Skip to content

Commit 0d45731

Browse files
authored
Remove redundant argument (#367)
1 parent 3fba762 commit 0d45731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public Xpp3Dom[] getChildren() {
219219

220220
private List<Xpp3Dom> getChildrenList() {
221221
boolean isNothing = childList == null || childList.isEmpty();
222-
return isNothing ? Collections.<Xpp3Dom>emptyList() : childList;
222+
return isNothing ? Collections.emptyList() : childList;
223223
}
224224

225225
/**

0 commit comments

Comments
 (0)