diff --git a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreLocal.java b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreLocal.java
index f17cebee3a26af8f00b53575676287452cc2e71e..e8b5e9ffc459cd7bc2a6f81ea7cac9fbcf3beadc 100644
--- a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreLocal.java
+++ b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreLocal.java
@@ -60,9 +60,9 @@ public class FileStoreLocal extends AbstractFileStore implements IExtendedFileSt
     private final HighwaterMarkWatcher highwaterMarkWatcher;
 
     public FileStoreLocal(final HostAwareFileWithHighwaterMark hostAwareFileWithHighwaterMark,
-            final String desription, final IFileSysOperationsFactory factory)
+            final String description, final IFileSysOperationsFactory factory)
     {
-        super(hostAwareFileWithHighwaterMark, desription, factory);
+        super(hostAwareFileWithHighwaterMark, description, factory);
         this.remover = factory.getRemover();
         this.mover = factory.getMover();
         this.highwaterMarkWatcher = createHighwaterMarkWatcher(hostAwareFileWithHighwaterMark);
diff --git a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java
index 8991bad427c6d8e4cb3efce159c2fdea2f3021d7..3b944754f4d3ad68ec35d569e527f4242f1a381f 100644
--- a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java
+++ b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java
@@ -229,7 +229,8 @@ public class FileStoreRemote extends AbstractFileStore
         return constructStoreCopier(destinationDirectory, requiresDeletion);
     }
 
-    public final StatusWithResult<Long> lastChanged(final StoreItem item, final long stopWhenFindYounger)
+    public final StatusWithResult<Long> lastChanged(final StoreItem item,
+            final long stopWhenFindYounger)
     {
         return lastChanged(item);
     }
diff --git a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemoteMounted.java b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemoteMounted.java
index eb2df120d03bbc02d5beaf508a20bd973c6f9d40..6179c9af60f39d9228439c47b2a5ba1e554b8af9 100644
--- a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemoteMounted.java
+++ b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemoteMounted.java
@@ -52,11 +52,11 @@ public final class FileStoreRemoteMounted extends AbstractFileStore
      *            time of the item will be terminated and will return with an error.
      */
     public FileStoreRemoteMounted(final HostAwareFileWithHighwaterMark file,
-            final String desription, final IFileSysOperationsFactory factory,
+            final String description, final IFileSysOperationsFactory factory,
             long lastChangedTimeoutMillis)
     {
-        super(file, desription, factory);
-        this.localImpl = new FileStoreLocal(file, desription, factory);
+        super(file, description, factory);
+        this.localImpl = new FileStoreLocal(file, description, factory);
         this.localImplMonitored =
                 MonitoringProxy.create(IFileStore.class, localImpl).timeoutMillis(
                         lastChangedTimeoutMillis).get();