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

@@ -411,8 +411,8 @@ public class SyncConfiguration {
// Our history checkbox drives form history, too.
// We don't need to do this for enablement: that's done at retrieval time.
if (selectedEngines.containsKey("history") && !selectedEngines.get("history").booleanValue()) {
declined.add("forms");
if (selectedEngines.containsKey("history") && !selectedEngines.get("history")) {
declined.add("forms");
}
String json = jObj.toJSONString();