Code improvements in Common Utils
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / commons / utils / DriverThread.java
index 64b518b..8e57d5e 100644 (file)
@@ -44,7 +44,7 @@ public abstract class DriverThread implements Runnable {
 
     public abstract void dispose();
 
-    final public void run() {
+    public final void run() {
         t = Thread.currentThread();
         if (name != null)
             t.setName(name);
@@ -52,7 +52,6 @@ public abstract class DriverThread implements Runnable {
         try {
             dispose();
         } catch (Exception e) {
-            //e.printStackTrace();
            log.error(" printStackTrace :", e);
         }
         this.setEnd(true);