Fix findbugs violations in applications
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / util / SemaphoreKeeperGuavaImpl.java
index 12040c58112d620f1f1e208127d046fca7f9305f..9b485d5e89dbc1d1f35766ad10b989e8512098e9 100644 (file)
@@ -32,9 +32,7 @@ public class SemaphoreKeeperGuavaImpl<K> implements SemaphoreKeeper<K> {
                 .build(new CacheLoader<K, Semaphore>() {
                     @Override
                     public Semaphore load(final K key) throws Exception {
-                        return new Semaphore(permits, fair) {
-                            private static final long serialVersionUID = 1L;
-                        };
+                        return new Semaphore(permits, fair);
                     }
                 });
     }