Print

Print


Author: [log in to unmask]
Date: Wed Apr  1 15:53:58 2015
New Revision: 2654

Log:
Remove traceback message when thread is interrupted as this is not an error.

Modified:
    java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/EventProcessing.java

Modified: java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/EventProcessing.java
 =============================================================================
--- java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/EventProcessing.java	(original)
+++ java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/EventProcessing.java	Wed Apr  1 15:53:58 2015
@@ -458,9 +458,7 @@
                 try {
                     // This should always work once the thread is interrupted.
                     sessionState.sessionWatchdogThread.join();
-                } catch (InterruptedException e) {
-                    // This should never happen.
-                    e.printStackTrace();
+                } catch (InterruptedException e) {                    
                 }
             }
             // Set the thread object to null.