Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / netconf / sal / tx / ReadOnlyTx.java
@@ -121,12 +121,12 @@ public final class ReadOnlyTx implements DOMDataReadOnlyTransaction {
     public CheckedFuture<Optional<NormalizedNode<?, ?>>, ReadFailedException> read(
             final LogicalDatastoreType store, final YangInstanceIdentifier path) {
         switch (store) {
-            case CONFIGURATION : {
-                return readConfigurationData(path);
-            }
-            case OPERATIONAL : {
-                return readOperationalData(path);
-            }
+        case CONFIGURATION: {
+            return readConfigurationData(path);
+        }
+        case OPERATIONAL: {
+            return readOperationalData(path);
+        }
         }
 
         throw new IllegalArgumentException(String.format("%s, Cannot read data %s for %s datastore, unknown datastore type", id, path, store));