Make EncFSVolume.recursiveDelete private

This commit is contained in:
Mark Pariente 2012-03-07 00:47:17 -08:00
parent 00636eaaa1
commit f12f98a2a1

View file

@ -671,7 +671,7 @@ public class EncFSVolume {
}
// Recursive method to delete a directory tree
public boolean recursiveDelete(EncFSFile file) throws IOException {
private boolean recursiveDelete(EncFSFile file) throws IOException {
boolean result = true;
if (file.isDirectory()) {