Index: /trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 15240)
+++ /trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 15241)
@@ -722,12 +722,11 @@
     public String toString() {
         // Used in imagery preferences filtering, so must be efficient
-        return new StringBuilder("ImageryInfo{")
-                .append("name='").append(name).append('\'')
-                .append(", countryCode='").append(countryCode).append('\'')
+        return new StringBuilder(name)
+                .append('[').append(countryCode)
                 // appending the localized country in toString() allows us to filter imagery preferences table with it!
-                .append(", localizedCountry='").append(getLocalizedCountry(countryCode)).append('\'')
-                .append(", url='").append(url).append('\'')
-                .append(", imageryType=").append(imageryType)
-                .append('}').toString();
+                .append("] ('").append(getLocalizedCountry(countryCode)).append(')')
+                .append(" - ").append(url)
+                .append(" - ").append(imageryType)
+                .toString();
     }
 
