Bug 1081401: Remove unnecessary autoboxing (recalcitrant sync part). r=rnewman

This commit is contained in:
Chris Kitching
2014-10-11 20:49:46 +01:00
parent 413715a20e
commit a66ddac79f
26 changed files with 45 additions and 48 deletions

View File

@@ -16,7 +16,7 @@ public class EngineSettings {
public EngineSettings(ExtendedJSONObject object) {
try {
this.syncID = object.getString("syncID");
this.version = object.getIntegerSafely("version").intValue();
this.version = object.getIntegerSafely("version");
} catch (Exception e ) {
throw new IllegalArgumentException(e);
}