Skip to content

Commit f4bf616

Browse files
committed
fix javadoc
1 parent 800f113 commit f4bf616

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main/java/org/codehaus/plexus/util/xml/Xpp3DomUtils.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,19 @@ public static Xpp3Dom mergeXpp3Dom(Xpp3Dom dominant, Xpp3Dom recessive) {
235235
}
236236

237237
/**
238-
* @deprecated Use {@link org.codehaus.plexus.util.StringUtils#isNotEmpty(String)} instead
238+
* @param str a String
239+
* @return true if not empty
240+
* @deprecated Use org.codehaus.plexus.util.StringUtils#isNotEmpty(String) instead
239241
*/
240242
@Deprecated
241243
public static boolean isNotEmpty(String str) {
242244
return (str != null && str.length() > 0);
243245
}
244246

245247
/**
246-
* @deprecated Use {@link org.codehaus.plexus.util.StringUtils#isEmpty(String)} instead
248+
* @param str a String
249+
* @return true if empty
250+
* @deprecated Use org.codehaus.plexus.util.StringUtils#isEmpty(String) instead
247251
*/
248252
@Deprecated
249253
public static boolean isEmpty(String str) {

0 commit comments

Comments
 (0)