USEPA / emf

Emissions Modeling Framework (EMF)
6 stars 3 forks source link

convert deprecated constructors to use static valueOf() methods #115

Open cseppan opened 1 year ago

cseppan commented 1 year ago

As of Java 9, the constructors for the classes Integer, Long, Float, Double, and Boolean have been deprecated and should be replaced with the static valueOf() method.

Old value = new Double(enter);

New value = Double.valueOf(enter);

cseppan commented 1 year ago

Commit 1964dabc222383c772ba24281df4d379c495a856 replaces the deprecated constructors in the Analysis Engine, Common, and EMF projects

cseppan commented 1 year ago

Note that commit 1964dabc222383c772ba24281df4d379c495a856 doesn't try to make use of autoboxing to remove unnecessary valueOf() calls