Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / Datastore.java
index 22c97c46dc3f49c4a7584aa5f8d633052263eeee..93df25ffc67e0f85c6c9a85f2fd2cf92d3a4030f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -14,20 +14,15 @@ public enum Datastore {
 
     running, candidate;
 
-    /**
-     * @param source
-     * @param transactionProvider
-     * @return
-     */
     public static DatastoreQueryStrategy getInstanceQueryStrategy(final Datastore source,
             final TransactionProvider transactionProvider) {
         switch (source) {
-        case running:
-            return new RunningDatastoreQueryStrategy(transactionProvider);
-        case candidate:
-            return new CandidateDatastoreQueryStrategy(transactionProvider);
-        default:
-            throw new UnsupportedOperationException("Unimplemented datastore query strategy for " + source);
+            case running:
+                return new RunningDatastoreQueryStrategy(transactionProvider);
+            case candidate:
+                return new CandidateDatastoreQueryStrategy(transactionProvider);
+            default:
+                throw new UnsupportedOperationException("Unimplemented datastore query strategy for " + source);
         }
     }
 }