Description
In https://github.com/apache/maven-resolver/blob/master/maven-resolver-util/src/main/java/org/eclipse/aether/util/ConfigUtils.java type conversion is supported from String to int, long, float and boolean. Only the latter though uses parse....(String) as method. All the other ones use valueOf(String). With valueOf unnecessary boxing and autoboxing happens, therefore in all cases the parse... methods should be used.
Attachments
Issue Links
- links to