We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc14c2 commit 3819e2dCopy full SHA for 3819e2d
spring-core/src/main/java/org/springframework/util/StringUtils.java
@@ -1139,7 +1139,8 @@ public static String[] removeDuplicateStrings(String[] array) {
1139
* @return a {@code Properties} instance representing the array contents,
1140
* or {@code null} if the array to process was {@code null} or empty
1141
*/
1142
- public static @Nullable Properties splitArrayElementsIntoProperties(String[] array, String delimiter) {
+ @Contract("null, _ -> null")
1143
+ public static @Nullable Properties splitArrayElementsIntoProperties(String @Nullable [] array, String delimiter) {
1144
return splitArrayElementsIntoProperties(array, delimiter, null);
1145
}
1146
0 commit comments