Remove use of SchemaContext.getQName()
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / provider / src / main / java / org / opendaylight / controller / clustering / it / provider / impl / FinalizableScheduledExecutorService.java
index 19e23736532da3ee9ff3dbcbf56805177edd09b8..f0873034b4e44be30398a490021607fbf1385fdf 100644 (file)
@@ -11,7 +11,7 @@ import java.util.concurrent.ScheduledThreadPoolExecutor;
 import java.util.concurrent.TimeUnit;
 
 /**
- * A simple ScheduledExecutorService, which shutds down its threads after a period of inactivity. It is safe to not
+ * A simple ScheduledExecutorService, which shuts down its threads after a period of inactivity. It is safe to not
  * shutdown this
  *
  * @author Robert Varga
@@ -30,7 +30,9 @@ final class FinalizableScheduledExecutorService extends ScheduledThreadPoolExecu
 
     // This is a bit ugly, but allows
     @Override
+    @SuppressWarnings("checkstyle:NoFinalizer")
     protected void finalize() {
+        super.finalize();
         super.shutdownNow();
     }
 }