src/share/classes/sun/security/action/GetLongAction.java

Print this page
rev 10195 : 8048267: Replace uses of 'new Long()' with appropriate alternative across core classes
Reviewed-by: chegar, psandoz
Contributed-by: Otavio Santana <otaviojava@java.net>

*** 104,112 **** * @return the <code>Long</code> value of the property. */ public Long run() { Long value = Long.getLong(theProp); if ((value == null) && defaultSet) ! return new Long(defaultVal); return value; } } --- 104,112 ---- * @return the <code>Long</code> value of the property. */ public Long run() { Long value = Long.getLong(theProp); if ((value == null) && defaultSet) ! return defaultVal; return value; } }