mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 17:13:21 +00:00 
			
		
		
		
	GUACAMOLE-497: Remove usage of now-deprecated container class constructors.
This commit is contained in:
		| @@ -76,7 +76,7 @@ public class NumericField extends Field { | ||||
|             return null; | ||||
|  | ||||
|         // Parse as integer | ||||
|         return new Integer(str); | ||||
|         return Integer.valueOf(str); | ||||
|  | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -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); | ||||
|   | ||||
| @@ -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); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user