Fix code style

This commit is contained in:
Y.E. Kwon 2016-06-15 08:59:09 +09:00 committed by GitHub
parent ccbf7efa56
commit 5ed2413dac

View file

@ -125,10 +125,12 @@ public class PythonInterpreter extends Interpreter {
logger.info("closing Python interpreter .....");
try {
if (process != null)
if (process != null) {
process.close();
if (gatewayServer != null)
}
if (gatewayServer != null) {
gatewayServer.shutdown();
}
} catch (IOException e) {
logger.error("Can't close the interpreter", e);
}