In src/main/java/org/apache/maven/plugins/help/AbstractEffectiveMojo.java:147-148: List list = new ArrayList(keynames); Collections.sort(list); The @SuppressWarnings({"rawtypes", "unchecked"}) annotation masks the issue rather than using List<Object>.
In src/main/java/org/apache/maven/plugins/help/AbstractEffectiveMojo.java:147-148:
List list = new ArrayList(keynames);
Collections.sort(list);
The @SuppressWarnings({"rawtypes", "unchecked"}) annotation masks the issue rather than using List.