Use FFMpeg instead of Avconv
[meviz.git] / src / main / java / eu / svjatoslav / meviz / htmlindexer / FilesystemIndexRemover.java
index 0b3b816..30f1099 100644 (file)
@@ -5,7 +5,7 @@ import eu.svjatoslav.commons.file.IOHelper;
 import java.io.File;
 import java.io.IOException;
 
-public class FilesystemIndexRemover {
+class FilesystemIndexRemover {
 
     private final CommandlineHandler commandlineHandler;
 
@@ -16,7 +16,7 @@ public class FilesystemIndexRemover {
         removeIndex(commandlineHandler.getWorkingDirectory());
     }
 
-    public void removeIndex(final File workingDirectory) throws IOException {
+    private void removeIndex(final File workingDirectory) throws IOException {
 
         // remove thumbnails directory from current directory
         final File thumbnailsDirectory = Utils