Merge pull request #3357 from izeye/filewatch-20150630

* pr/3357:
  Fix typo
This commit is contained in:
Phillip Webb 2015-06-30 00:43:30 -07:00
commit 8da4d153b7
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ public class FileSystemWatcher {
* Start monitoring the source folder for changes.
*/
public synchronized void start() {
saveInitalSnapshots();
saveInitialSnapshots();
if (this.watchThread == null) {
this.watchThread = new Thread() {
@Override
@ -161,7 +161,7 @@ public class FileSystemWatcher {
}
}
private void saveInitalSnapshots() {
private void saveInitialSnapshots() {
for (File folder : this.folders.keySet()) {
this.folders.put(folder, new FolderSnapshot(folder));
}