Skip to content
Snippets Groups Projects
Commit a7e4f515 authored by Lange, Dr. Herbert's avatar Lange, Dr. Herbert
Browse files

make more functions non-static

parent 8aaaeed0
No related branches found
No related tags found
No related merge requests found
Pipeline #9156 passed
...@@ -116,7 +116,7 @@ public class ExbFileCoverageChecker extends Checker implements CorpusFunction { ...@@ -116,7 +116,7 @@ public class ExbFileCoverageChecker extends Checker implements CorpusFunction {
return IsUsableFor; return IsUsableFor;
} }
public static void setWhitelist() { public void setWhitelist() {
whitelist = new ArrayList<String>(); whitelist = new ArrayList<String>();
whitelist.add(".git"); whitelist.add(".git");
whitelist.add(".gitignore"); whitelist.add(".gitignore");
...@@ -141,7 +141,7 @@ public class ExbFileCoverageChecker extends Checker implements CorpusFunction { ...@@ -141,7 +141,7 @@ public class ExbFileCoverageChecker extends Checker implements CorpusFunction {
* Search function for getting all the files under the same folder with the * Search function for getting all the files under the same folder with the
* basic transcription file and sub-folders. * basic transcription file and sub-folders.
*/ */
public static void search(File folder, List<String> result) { public void search(File folder, List<String> result) {
for (File f : folder.listFiles()) { for (File f : folder.listFiles()) {
if (f.isDirectory()) { if (f.isDirectory()) {
search(f, result); search(f, result);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment