Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Kaegi2007-11-19 20:00:48 +0000
committerSimon Kaegi2007-11-19 20:00:48 +0000
commit4d5b01a2ffda7690fe2731dda69dcaddb201e66b (patch)
tree1a0ece9cbe0317d7e969cd56ac4330f819e31c92 /bundles/org.eclipse.equinox.p2.directorywatcher
parente6bedea8e5c7127534e2dac2a885a3ba7cc64c71 (diff)
downloadrt.equinox.p2-4d5b01a2ffda7690fe2731dda69dcaddb201e66b.tar.gz
rt.equinox.p2-4d5b01a2ffda7690fe2731dda69dcaddb201e66b.tar.xz
rt.equinox.p2-4d5b01a2ffda7690fe2731dda69dcaddb201e66b.zip
updating to improvements in DirectoryChangeListener
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.directorywatcher')
-rw-r--r--bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/BundleFolderRepositorySynchronizer.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/BundleFolderRepositorySynchronizer.java b/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/BundleFolderRepositorySynchronizer.java
index d62f0d280..5d8ba2436 100644
--- a/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/BundleFolderRepositorySynchronizer.java
+++ b/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/p2/directorywatcher/BundleFolderRepositorySynchronizer.java
@@ -21,30 +21,6 @@ public class BundleFolderRepositorySynchronizer {
watcher.addListener(listener);
DirectoryChangeListener updatedListener = new DirectoryChangeListener() {
-
- public boolean added(File file) {
- return false;
- }
-
- public boolean changed(File file) {
- return false;
- }
-
- public String[] getExtensions() {
- return null;
- }
-
- public Long getSeenFile(File file) {
- return null;
- }
-
- public boolean removed(File file) {
- return false;
- }
-
- public void startPoll() {
- }
-
public void stopPoll() {
checkForUpdates();
}

Back to the top