updates for jep implementation on windows

This commit is contained in:
Michael James 2018-09-07 15:08:36 -06:00
parent a43e3bfe19
commit e7d3052a88

View file

@ -115,7 +115,12 @@ public class TextWsPythonScript {
public void dispose() {
if (jep != null) {
jep.close();
try {
jep.close();
} catch (JepException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
jep = null;
}
}