Index: trunk/scripts/SyncEditorImageryIndex.groovy
===================================================================
--- trunk/scripts/SyncEditorImageryIndex.groovy	(revision 11414)
+++ trunk/scripts/SyncEditorImageryIndex.groovy	(revision 11415)
@@ -359,5 +359,8 @@
                 }
             } else if(!js.size() && s.size()) {
-                myprintln "- No JOSM shape: ${getDescription(j)}"
+                // don't report boundary like 5 point shapes as difference
+                if (s.size() != 1 || s[0].getPoints().size() != 5) {
+                    myprintln "- No JOSM shape: ${getDescription(j)}"
+                }
             } else if(s.size() != js.size()) {
                 myprintln "* Different number of shapes (${s.size()} != ${js.size()}): ${getDescription(j)}"
@@ -417,7 +420,4 @@
                     l.add(s)
                 }
-                if (l.size() == 1 && l[0].getPoints().size() == 5) {
-                    return [] // ignore a bounds equivalent shape
-                }
                 return l
             }
