Merge "Bug 735 - Part 1: Update ietf-restconf and ietf-yangtypes to newer versions"
[yangtools.git] / common / object-cache-noop / src / main / java / org / opendaylight / yangtools / objcache / impl / StaticObjectCacheBinder.java
index 2af58bf5c36928c9b86d813f531c16901f2edc40..3ef9fbf941d90f79dc7eef87a2e72c1d907a42dc 100644 (file)
@@ -13,18 +13,18 @@ import org.opendaylight.yangtools.objcache.spi.IObjectCacheFactory;
 import org.opendaylight.yangtools.objcache.spi.NoopObjectCache;
 
 public final class StaticObjectCacheBinder extends AbstractObjectCacheBinder {
-       private static final StaticObjectCacheBinder INSTANCE = new StaticObjectCacheBinder();
+    private static final StaticObjectCacheBinder INSTANCE = new StaticObjectCacheBinder();
 
-       private StaticObjectCacheBinder() {
-               super(new IObjectCacheFactory() {
-                       @Override
-                       public ObjectCache getObjectCache(final Class<?> objClass) {
-                               return NoopObjectCache.getInstance();
-                       }
-               });
-       }
+    private StaticObjectCacheBinder() {
+        super(new IObjectCacheFactory() {
+            @Override
+            public ObjectCache getObjectCache(final Class<?> objClass) {
+                return NoopObjectCache.getInstance();
+            }
+        });
+    }
 
-       public static StaticObjectCacheBinder getInstance() {
-               return INSTANCE;
-       }
+    public static StaticObjectCacheBinder getInstance() {
+        return INSTANCE;
+    }
 }