GUACAMOLE-497: Remove usage of now-deprecated container class constructors.

This commit is contained in:
Michael Jumper
2018-02-01 15:06:56 -08:00
parent 07d0307855
commit 29f838f63d
3 changed files with 3 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ public class NumericField extends Field {
return null;
// Parse as integer
return new Integer(str);
return Integer.valueOf(str);
}

View File

@@ -35,8 +35,7 @@ public abstract class IntegerGuacamoleProperty implements GuacamoleProperty<Inte
return null;
try {
Integer integer = new Integer(value);
return integer;
return Integer.valueOf(value);
}
catch (NumberFormatException e) {
throw new GuacamoleServerException("Property \"" + getName() + "\" must be an integer.", e);

View File

@@ -35,8 +35,7 @@ public abstract class LongGuacamoleProperty implements GuacamoleProperty<Long> {
return null;
try {
Long longValue = new Long(value);
return longValue;
return Long.valueOf(value);
}
catch (NumberFormatException e) {
throw new GuacamoleServerException("Property \"" + getName() + "\" must be an long.", e);