Skip to content
Snippets Groups Projects
Commit 2e1c562c authored by Jürgen Walter's avatar Jürgen Walter
Browse files

check if trace files exist is broken ==> bypass

parent b187912e
No related branches found
No related tags found
No related merge requests found
......@@ -331,14 +331,15 @@ public class KiekerHelper {
public static boolean checkTraceFilesExist(String path){
File file = new File(path);
if (!file.exists() || ! file.isDirectory()){
return false;
}
String[] folders = getTraceFolders(path);
if (folders.length>0){
return true;
} else {
return false;
}
return true;
// if (!file.exists() || ! file.isDirectory()){
// return false;
// }
// String[] folders = getTraceFolders(path);
// if (folders.length>0){
// return true;
// } else {
// return false;
// }
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment