Index: trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 17483)
+++ trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 17484)
@@ -580,12 +580,12 @@
         // CHECKSTYLE.OFF: BooleanExpressionComplexity
         return super.equalsPref(realOther) &&
-                Objects.equals(this.bestMarked, realOther.bestMarked) &&
-                Objects.equals(this.overlay, realOther.overlay) &&
-                Objects.equals(this.isGeoreferenceValid, realOther.isGeoreferenceValid) &&
-                Objects.equals(this.defaultMaxZoom, realOther.defaultMaxZoom) &&
-                Objects.equals(this.defaultMinZoom, realOther.defaultMinZoom) &&
+                this.bestMarked == realOther.bestMarked &&
+                this.overlay == realOther.overlay &&
+                this.isGeoreferenceValid == realOther.isGeoreferenceValid &&
+                this.defaultMaxZoom == realOther.defaultMaxZoom &&
+                this.defaultMinZoom == realOther.defaultMinZoom &&
                 Objects.equals(this.serverProjections, realOther.serverProjections) &&
-                Objects.equals(this.transparent, realOther.transparent) &&
-                Objects.equals(this.minimumTileExpire, realOther.minimumTileExpire);
+                this.transparent == realOther.transparent &&
+                this.minimumTileExpire == realOther.minimumTileExpire;
         // CHECKSTYLE.ON: BooleanExpressionComplexity
     }
Index: trunk/src/org/openstreetmap/josm/data/sources/SourceInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/sources/SourceInfo.java	(revision 17483)
+++ trunk/src/org/openstreetmap/josm/data/sources/SourceInfo.java	(revision 17484)
@@ -165,5 +165,5 @@
                 Objects.equals(this.id, other.id) &&
                 Objects.equals(this.url, other.url) &&
-                Objects.equals(this.modTileFeatures, other.modTileFeatures) &&
+                this.modTileFeatures == other.modTileFeatures &&
                 Objects.equals(this.cookies, other.cookies) &&
                 Objects.equals(this.eulaAcceptanceRequired, other.eulaAcceptanceRequired) &&
