File tree 1 file changed +14
-4
lines changed
src/main/java/org/apache/maven/shared/utils/xml
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -354,17 +354,27 @@ private PrettyPrintXMLWriter getPrettyPrintXMLWriter(StringWriter writer) {
354
354
}
355
355
356
356
/**
357
- * @param str The string to be checked.
358
- * @return true if the string is not empty (length > 0) and not <code>null</code>.
357
+ * Warning: this is not the reverse of {@link #isEmpty}.
358
+ * Whitespace only strings are both empty and not empty.
359
+ *
360
+ * @param str the string to be checked
361
+ * @return true if the string is not empty (length > 0) and not <code>null</code>
362
+ * @deprecated use <code>str != null && !str.isEmpty()</code>
359
363
*/
364
+ @ Deprecated
360
365
public static boolean isNotEmpty (String str ) {
361
366
return str != null && str .length () > 0 ;
362
367
}
363
368
364
369
/**
365
- * @param str The string to be checked.
366
- * @return true if the string is empty or <code>null</code>.
370
+ * Warning: this is not the reverse of {@link #isNotEmpty}.
371
+ * Whitespace only strings are both empty and not empty.
372
+ *
373
+ * @param str the string to be checked
374
+ * @return true if the string only contains whitespace or is <code>null</code>
375
+ * @deprecated use <code>str == null || str.trim().isEmpty()</code>
367
376
*/
377
+ @ Deprecated
368
378
public static boolean isEmpty (String str ) {
369
379
return str == null || str .trim ().length () == 0 ;
370
380
}
You can’t perform that action at this time.
0 commit comments