Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressEditContainer.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressEditContainer.java	(revision 26420)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressEditContainer.java	(revision 26509)
@@ -646,4 +646,5 @@
 	 * @see org.openstreetmap.josm.data.osm.event.DataSetListener#primitivesAdded(org.openstreetmap.josm.data.osm.event.PrimitivesAddedEvent)
 	 */
+        @Override
 	public void primitivesAdded(PrimitivesAddedEvent event) {
 		invalidate();
@@ -653,4 +654,5 @@
 	 * @see org.openstreetmap.josm.data.osm.event.DataSetListener#primitivesRemoved(org.openstreetmap.josm.data.osm.event.PrimitivesRemovedEvent)
 	 */
+        @Override
 	public void primitivesRemoved(PrimitivesRemovedEvent event) {
 		invalidate();
@@ -819,15 +821,3 @@
 		}
 	}
-
-	@Override
-	public void primtivesAdded(PrimitivesAddedEvent event) {
-		// TODO Auto-generated method stub
-		
-	}
-
-	@Override
-	public void primtivesRemoved(PrimitivesRemovedEvent event) {
-		// TODO Auto-generated method stub
-		
-	}
 }
Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/FixAddressesMapMode.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/FixAddressesMapMode.java	(revision 26420)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/FixAddressesMapMode.java	(revision 26509)
@@ -26,5 +26,5 @@
 
 	public FixAddressesMapMode(MapFrame mapFrame) {
-		super(tr("Fix adresses"), "incompleteaddress_24",
+		super(tr("Fix addresses"), "incompleteaddress_24",
 				tr("Show dialog with incomplete addresses"),
 				mapFrame,
Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/GuessAddressRunnable.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/GuessAddressRunnable.java	(revision 26420)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/GuessAddressRunnable.java	(revision 26509)
@@ -46,5 +46,5 @@
 	private OSMAddress curAddressNode;
 	private boolean isRunning = false;
-	private boolean cancelled;
+	private boolean canceled;
 
 
@@ -170,5 +170,5 @@
 	@Override
 	protected void cancel() {
-		cancelled = true;
+		canceled = true;
 	}
 
@@ -190,5 +190,5 @@
 
 		isRunning = true;
-		cancelled = false;
+		canceled = false;
 
 		// Start progress monitor to guess address values
@@ -221,5 +221,5 @@
 
 				// check for cancel
-				if (cancelled) {
+				if (canceled) {
 					break;
 				}
@@ -229,5 +229,5 @@
 				// visit osm data
 				for (OsmPrimitive osmPrimitive : Main.main.getCurrentDataSet().allPrimitives()) {
-					if (cancelled) {
+					if (canceled) {
 						break;
 					}
Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/IOSMEntity.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/IOSMEntity.java	(revision 26420)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/IOSMEntity.java	(revision 26509)
@@ -52,5 +52,5 @@
 
 	/**
-	 * Gets the coordinate of the node. If the the underlying object is a
+	 * Gets the coordinate of the node. If the underlying object is a
 	 * node, it just returns the node coordinate. For ways and areas, this
 	 * method returns the coordinate of the center (balance point).
Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/StringUtils.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/StringUtils.java	(revision 26420)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/StringUtils.java	(revision 26509)
@@ -120,5 +120,5 @@
 	/**
 	 * @param needle The string to find the best match for.
-	 * @param haystack The list of strings to pick the the best match from.
+	 * @param haystack The list of strings to pick the best match from.
 	 * @return The string of the list with the longest common substring to needle or
 	 * <tt>null</tt>, if either <tt>needle</tt> or <tt>haystack</tt> is empty or null.
Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/IncompleteAddressesDialog.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/IncompleteAddressesDialog.java	(revision 26420)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/IncompleteAddressesDialog.java	(revision 26509)
@@ -157,4 +157,5 @@
 	 * @see org.openstreetmap.josm.data.osm.event.DataSetListener#primitivesAdded(org.openstreetmap.josm.data.osm.event.PrimitivesAddedEvent)
 	 */
+        @Override
 	public void primitivesAdded(PrimitivesAddedEvent event) {
 		container.invalidate();
@@ -165,4 +166,5 @@
 	 * @see org.openstreetmap.josm.data.osm.event.DataSetListener#primitivesRemoved(org.openstreetmap.josm.data.osm.event.PrimitivesRemovedEvent)
 	 */
+        @Override
 	public void primitivesRemoved(PrimitivesRemovedEvent event) {
 		container.invalidate();
@@ -227,13 +229,3 @@
 		container.invalidate();
 	}
-
-	@Override
-	public void primtivesAdded(PrimitivesAddedEvent event) {
-		// do something here?		
-	}
-
-	@Override
-	public void primtivesRemoved(PrimitivesRemovedEvent event) {
-		// do something here?		
-	}
 }
