Skip to content
Snippets Groups Projects
Commit 48f6216b authored by carlosuc3m's avatar carlosuc3m
Browse files

do not throw exception if there is a wrong folder

parent 6293224a
No related branches found
No related tags found
No related merge requests found
...@@ -256,8 +256,6 @@ public class AvailableDeepLearningVersions ...@@ -256,8 +256,6 @@ public class AvailableDeepLearningVersions
try { try {
return DeepLearningVersion.fromString(t); return DeepLearningVersion.fromString(t);
} catch (Exception e) { } catch (Exception e) {
// TODO print stack trace??
e.printStackTrace();
System.out.println(""); System.out.println("");
System.out.println("Folder '" + new File(t).getName() + "' does not contain a supported Deep Learning engine version"); System.out.println("Folder '" + new File(t).getName() + "' does not contain a supported Deep Learning engine version");
return null; return null;
......
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