소스 검색

Fix trim might cause NPE in PropertyUtils (#13853)

Wenjun Ruan 2 년 전
부모
커밋
69fc217ab2
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/PropertyUtils.java

+ 3 - 0
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/PropertyUtils.java

@@ -88,6 +88,9 @@ public class PropertyUtils {
      * @return property value
      */
     public static String getString(String key) {
+        if (key == null) {
+            return null;
+        }
         return properties.getProperty(key.trim());
     }