checkStyleViolationSeverity=error implemented for mdsal-dom-broker
[mdsal.git] / dom / mdsal-dom-broker / src / test / java / org / opendaylight / mdsal / dom / broker / TestUtils.java
index 08ff36ec91f9f60bf9f82bb3c98519dce939a585..1a717d51c13a6ff4ddef31be19110212462c62f0 100644 (file)
@@ -40,7 +40,7 @@ abstract class TestUtils {
     private static final QName TOP_LEVEL_LIST_QNAME = QName.create(TOP_QNAME, "top-level-list");
     private static final QName TOP_LEVEL_LIST_KEY_QNAME = QName.create(TOP_QNAME, "name");
 
-    private final static MapEntryNode topLevelListNormalized = ImmutableMapEntryNodeBuilder.create()
+    private static final MapEntryNode TOP_LEVEL_LIST_NODE = ImmutableMapEntryNodeBuilder.create()
             .withNodeIdentifier(
                     new YangInstanceIdentifier.NodeIdentifierWithPredicates(
                             TOP_LEVEL_LIST_QNAME, TOP_LEVEL_LIST_KEY_QNAME, TOP_LEVEL_LIST_FOO_KEY_VALUE))
@@ -49,7 +49,7 @@ abstract class TestUtils {
 
     private static final DataContainerChild<?, ?> CHILD_LIST = ImmutableNodes.mapNodeBuilder(TestModel.TEST_QNAME)
             .withNodeIdentifier(NodeIdentifier.create(TestModel.TEST_QNAME))
-            .withChild(topLevelListNormalized)
+            .withChild(TOP_LEVEL_LIST_NODE)
             .build();
 
     static final NormalizedNode<?, ?> TEST_CONTAINER = Builders.containerBuilder()
@@ -64,7 +64,7 @@ abstract class TestUtils {
 
     static final String EXCEPTION_TEXT = "TestRpcImplementationException";
 
-    static TestRpcImplementation getTestRpcImplementation(){
+    static TestRpcImplementation getTestRpcImplementation() {
         return new TestRpcImplementation();
     }