removed cleanup in favor of close from autoclosable

This commit is contained in:
Jeremy Long
2017-09-03 14:34:39 -04:00
parent 9b491fb286
commit f36f4068f3
13 changed files with 23 additions and 28 deletions

View File

@@ -274,7 +274,7 @@ public class App {
return determineReturnCode(engine, cvssFailScore);
} finally {
if (engine != null) {
engine.cleanup();
engine.close();
}
}
}