From dccb0b7736976319384e62c90263d45f9f1b01bf Mon Sep 17 00:00:00 2001 From: izeye Date: Tue, 30 Jun 2015 13:57:30 +0900 Subject: [PATCH] Fix typo Fixes gh-3357 --- .../boot/devtools/filewatch/FileSystemWatcher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java index fb41016844d..140e9e67735 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java @@ -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)); }