Github user lresende commented on a diff in the pull request:
https://github.com/apache/incubator-toree/pull/140#discussion_r138427011
--- Diff:
kernel/src/main/scala/org/apache/toree/boot/layer/HookInitialization.scala ---
@@ -69,8 +69,9 @@ trait StandardHookInitialization extends
HookInitialization {
// TODO: Signals are not a good way to handle this since JVM only has
the
// proprietary sun API that is not necessarily available on all
platforms
Signal.handle(new Signal("INT"), new SignalHandler() {
- private val MaxSignalTime: Long = 3000 // 3 seconds
- var lastSignalReceived: Long = 0
+ private val MaxSignalTime: Long = 3000
+ // 3 seconds
+ var lastSignalReceived: Long = 0
--- End diff --
Can we remove the formatting changes above?
---