
resources.report.rules.pmd.ReplaceHashtableWithMap.html Maven / Gradle / Ivy
ReplaceHashtableWithMap
ReplaceHashtableWithMap
Consider replacing Hashtable usage with the newer java.util.Map if thread safety is not required.
//Type/ReferenceType/ClassOrInterfaceType[@Image='Hashtable']
Example(s):
public class Foo {
void bar() {
Hashtable h = new Hashtable();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy