We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fba762 commit 0d45731Copy full SHA for 0d45731
src/main/java/org/apache/maven/shared/utils/xml/Xpp3Dom.java
@@ -219,7 +219,7 @@ public Xpp3Dom[] getChildren() {
219
220
private List<Xpp3Dom> getChildrenList() {
221
boolean isNothing = childList == null || childList.isEmpty();
222
- return isNothing ? Collections.<Xpp3Dom>emptyList() : childList;
+ return isNothing ? Collections.emptyList() : childList;
223
}
224
225
/**
0 commit comments