Index: applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java
===================================================================
--- applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java	(revision 26495)
+++ applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java	(revision 26509)
@@ -25,5 +25,5 @@
 public class DownloadSignedOsmDataTask  extends PleaseWaitRunnable {
 
-	private boolean cancelled;
+	private boolean canceled;
 	private Exception lastException;
 	private final Collection<OsmPrimitive> missing;
@@ -44,5 +44,5 @@
 	@Override
 	protected void cancel() {
-		cancelled = true;
+		canceled = true;
 		synchronized(this) {
 			if (objectReader != null) {
@@ -55,5 +55,5 @@
 	protected void finish() {
 		Main.map.repaint();
-		if (cancelled)
+		if (canceled)
 			return;
 		if (lastException != null) {
@@ -75,5 +75,5 @@
 		try {
 			synchronized (this) {
-				if (cancelled) return;
+				if (canceled) return;
 				objectReader = new MultiFetchServerObjectReader();
 			}
@@ -87,5 +87,5 @@
 				return;
 			synchronized (this) {
-				if (cancelled) return;
+				if (canceled) return;
 				objectReader = null;
 			}
@@ -103,6 +103,6 @@
 
 		} catch (Exception e) {
-			if (cancelled) {
-				System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e.toString()));
+			if (canceled) {
+				System.out.println(tr("Warning: ignoring exception because task is canceled. Exception: {0}", e.toString()));
 				return;
 			}
Index: applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/KeyGenerationTask.java
===================================================================
--- applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/KeyGenerationTask.java	(revision 26495)
+++ applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/KeyGenerationTask.java	(revision 26509)
@@ -12,5 +12,5 @@
 public class KeyGenerationTask extends PleaseWaitRunnable {
 
-	private boolean cancelled;
+	private boolean canceled;
 	private Exception lastException;
 
@@ -21,5 +21,5 @@
 	@Override
 	protected void cancel() {
-		cancelled = true;
+		canceled = true;
 		synchronized(this) {
 			/*		if (objectReader != null) {
@@ -31,5 +31,5 @@
 	@Override
 	protected void finish() {
-		if (cancelled)
+		if (canceled)
 			return;
 		if (lastException != null) {
@@ -44,5 +44,5 @@
 		try {
 			/*			synchronized (this) {
-				if (cancelled) return;
+				if (canceled) return;
 				objectReader = new MultiFetchServerObjectReader();
 			}
@@ -56,5 +56,5 @@
 				return;
 			synchronized (this) {
-				if (cancelled) return;
+				if (canceled) return;
 				objectReader = null;
 			}
@@ -71,6 +71,6 @@
 			 */
 		} catch (Exception e) {
-			if (cancelled) {
-				System.out.println(tr("Warning: ignoring exception because task is cancelled. Exception: {0}", e
+			if (canceled) {
+				System.out.println(tr("Warning: ignoring exception because task is canceled. Exception: {0}", e
 						.toString()));
 				return;
