Index: /trunk/src/org/openstreetmap/josm/command/DeleteCommand.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/command/DeleteCommand.java	(revision 2467)
+++ /trunk/src/org/openstreetmap/josm/command/DeleteCommand.java	(revision 2468)
@@ -58,5 +58,5 @@
             throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be empty"));
         if (data.isEmpty())
-            throw new IllegalArgumentException(tr("At least one object to delete requird, got empty collection"));
+            throw new IllegalArgumentException(tr("At least one object to delete required, got empty collection"));
         this.toDelete = data;
     }
Index: /trunk/src/org/openstreetmap/josm/data/osm/visitor/SimplePaintVisitor.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/data/osm/visitor/SimplePaintVisitor.java	(revision 2467)
+++ /trunk/src/org/openstreetmap/josm/data/osm/visitor/SimplePaintVisitor.java	(revision 2468)
@@ -132,5 +132,5 @@
     public void visitAll(DataSet data, boolean virtual, Bounds bounds) {
         this.ds = data;
-        //boolean profiler = Main.pref.getboolean("simplepaint.profiler",false);
+        //boolean profiler = Main.pref.getBoolean("simplepaint.profiler",false);
         //long profilerStart = java.lang.System.currentTimeMillis();
         //long profilerLast = profilerStart;
Index: /trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java	(revision 2467)
+++ /trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java	(revision 2468)
@@ -67,16 +67,4 @@
 
         return Main.proj.latlon2eastNorth(new LatLon(lat, lon));
-    }
-
-    /**
-     * Return a ID which is unique as long as viewport dimensions are the same
-     */
-    public Integer getViewID()
-    {
-        String x = center.east() + "_" + center.north() + "_" + scale + "_" +
-        getWidth() + "_" + getHeight() + "_" + getProjection().toString();
-        java.util.zip.CRC32 id = new java.util.zip.CRC32();
-        id.update(x.getBytes());
-        return new Long(id.getValue()).intValue();
     }
 
