From 560eba15aebb1f4430146699dbeb6b7046d22faf Mon Sep 17 00:00:00 2001 From: PJ Date: Tue, 21 Jan 2014 13:40:57 -0800 Subject: [PATCH] re-add mistakenly removed offerPath when handling change detection. --- src/com/google/enterprise/adaptor/fs/WindowsFileDelegate.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/google/enterprise/adaptor/fs/WindowsFileDelegate.java b/src/com/google/enterprise/adaptor/fs/WindowsFileDelegate.java index c310616..4b864ad 100644 --- a/src/com/google/enterprise/adaptor/fs/WindowsFileDelegate.java +++ b/src/com/google/enterprise/adaptor/fs/WindowsFileDelegate.java @@ -390,6 +390,7 @@ private void handleChanges(FILE_NOTIFY_INFORMATION info) switch (info.Action) { case Kernel32.FILE_ACTION_MODIFIED: log.log(Level.FINEST, "Modified: {0}", changePath); + offerPath(changePath); break; case Kernel32.FILE_ACTION_ADDED: case Kernel32.FILE_ACTION_RENAMED_NEW_NAME: