Cleanup checkstyle warnings
[yangtools.git] / common / object-cache-guava / src / main / java / org / opendaylight / yangtools / objcache / impl / StaticObjectCacheBinder.java
index 5867d556c9f2a763a5262cbefbe47e41ef37166a..ff46d729921395066d800bf37565eab1073cee6c 100644 (file)
@@ -11,13 +11,13 @@ import org.opendaylight.yangtools.objcache.guava.GuavaObjectCacheFactory;
 import org.opendaylight.yangtools.objcache.spi.AbstractObjectCacheBinder;
 
 public final class StaticObjectCacheBinder extends AbstractObjectCacheBinder {
-       private static final StaticObjectCacheBinder INSTANCE = new StaticObjectCacheBinder();
+    private static final StaticObjectCacheBinder INSTANCE = new StaticObjectCacheBinder();
 
-       private StaticObjectCacheBinder() {
-               super(GuavaObjectCacheFactory.getInstance());
-       }
+    private StaticObjectCacheBinder() {
+        super(GuavaObjectCacheFactory.getInstance());
+    }
 
-       public static StaticObjectCacheBinder getInstance() {
-               return INSTANCE;
-       }
+    public static StaticObjectCacheBinder getInstance() {
+        return INSTANCE;
+    }
 }