~bjd/syncany/misc-fixes

« back to all changes in this revision

Viewing changes to syncany/src/org/syncany/index/FileListerListenerImpl.java

  • Committer: Philipp Heckel
  • Date: 2011-06-18 23:40:35 UTC
  • Revision ID: philipp.heckel@gmail.com-20110618234035-4lzgul0rsf4j09fd
sync alg; recursive move not working

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
package org.syncany.index;
19
19
 
20
20
import org.syncany.config.Folder;
21
 
import org.syncany.util.FileLister.FileListerListener;
22
21
import org.syncany.util.FileUtil;
23
22
import java.io.File;
24
23
import org.syncany.Constants;
 
24
import org.syncany.util.FileLister.FileListerAdapter;
25
25
 
26
26
/**
27
27
 *
28
28
 * @author Philipp C. Heckel
29
29
 */
30
 
public class FileListerListenerImpl implements FileListerListener {
 
30
public class FileListerListenerImpl extends FileListerAdapter {
31
31
    private Folder root;
32
32
    private Indexer indexer;
33
33
    private boolean deleteIgnoreFiles;
74
74
 
75
75
        return true;
76
76
    }
77
 
 
78
 
    @Override public void outDirectory(File directory) { }
79
 
    @Override public void startProcessing() { }
80
 
    @Override public void endOfProcessing() { }
81
77
}
 
 
b'\\ No newline at end of file'