Skip to content

Commit 259b796

Browse files
authored
[MNG-7729] deprecate questionable IsEmpty/IsNotEmpty methods (#136)
* deprecate questionable utility methods
1 parent 020cc01 commit 259b796

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

src/main/java/org/apache/maven/shared/utils/xml/Xpp3Dom.java

+14-4
Original file line numberDiff line numberDiff line change
@@ -354,17 +354,27 @@ private PrettyPrintXMLWriter getPrettyPrintXMLWriter(StringWriter writer) {
354354
}
355355

356356
/**
357-
* @param str The string to be checked.
358-
* @return true if the string is not empty (length &gt; 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 &gt; 0) and not <code>null</code>
362+
* @deprecated use <code>str != null &amp;&amp; !str.isEmpty()</code>
359363
*/
364+
@Deprecated
360365
public static boolean isNotEmpty(String str) {
361366
return str != null && str.length() > 0;
362367
}
363368

364369
/**
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>
367376
*/
377+
@Deprecated
368378
public static boolean isEmpty(String str) {
369379
return str == null || str.trim().length() == 0;
370380
}

0 commit comments

Comments
 (0)