From c7846405c83f680660852f299d8051b420b3cddd Mon Sep 17 00:00:00 2001 From: Michael Vorburger Date: Fri, 25 Nov 2016 19:24:36 +0100 Subject: [PATCH 1/1] Checkstyle compliant src/main|test/resources Change-Id: Ic7dc38ddedb3ed642eb8581cc223269c1bf36408 Signed-off-by: Michael Vorburger --- .../opendaylight-blueprint-ext-1.0.0.xsd | 6 ++--- .../src/main/resources/application.conf | 6 ++--- .../src/test/resources/application.conf | 26 +++++++++---------- .../test/resources/odl-datastore-test.yang | 4 +-- .../src/main/resources/application.conf | 6 ++--- .../src/test/resources/test-rpc.yang | 6 ++--- 6 files changed, 27 insertions(+), 27 deletions(-) diff --git a/opendaylight/blueprint/src/main/resources/opendaylight-blueprint-ext-1.0.0.xsd b/opendaylight/blueprint/src/main/resources/opendaylight-blueprint-ext-1.0.0.xsd index 3c0e2274fe..a95ba620ea 100644 --- a/opendaylight/blueprint/src/main/resources/opendaylight-blueprint-ext-1.0.0.xsd +++ b/opendaylight/blueprint/src/main/resources/opendaylight-blueprint-ext-1.0.0.xsd @@ -1,6 +1,6 @@ - @@ -61,4 +61,4 @@ - \ No newline at end of file + diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf b/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf index 83bb12d806..2449976a25 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf @@ -33,9 +33,9 @@ odl-cluster-data { netty.tcp { hostname = "127.0.0.1" port = 2550 - maximum-frame-size = 419430400 - send-buffer-size = 52428800 - receive-buffer-size = 52428800 + maximum-frame-size = 419430400 + send-buffer-size = 52428800 + receive-buffer-size = 52428800 } } diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/application.conf b/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/application.conf index 9db9900577..f0cf18932f 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/application.conf +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/application.conf @@ -54,12 +54,12 @@ Member1 { akka { persistence.snapshot-store.plugin = "in-memory-snapshot-store" persistence.journal.plugin = "in-memory-journal" - + loglevel = "INFO" - + actor { provider = "akka.cluster.ClusterActorRefProvider" - + serializers { java = "akka.serialization.JavaSerializer" proto = "akka.remote.serialization.ProtobufSerializer" @@ -82,7 +82,7 @@ Member1 { cluster { auto-down-unreachable-after = 100s retry-unsuccessful-join-after = 100ms - + roles = [ "member-1" ] @@ -96,7 +96,7 @@ Member2 { mailbox-capacity = 1000 mailbox-push-timeout-time = 100ms } - + in-memory-journal { class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal" } @@ -105,14 +105,14 @@ Member2 { class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore" plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher" } - + akka { persistence.snapshot-store.plugin = "in-memory-snapshot-store" persistence.journal.plugin = "in-memory-journal" - + actor { provider = "akka.cluster.ClusterActorRefProvider" - + serializers { java = "akka.serialization.JavaSerializer" proto = "akka.remote.serialization.ProtobufSerializer" @@ -135,7 +135,7 @@ Member2 { cluster { auto-down-unreachable-after = 100s retry-unsuccessful-join-after = 100ms - + roles = [ "member-2" ] @@ -162,12 +162,12 @@ Member3 { akka { persistence.snapshot-store.plugin = "in-memory-snapshot-store" persistence.journal.plugin = "in-memory-journal" - + loglevel = "INFO" - + actor { provider = "akka.cluster.ClusterActorRefProvider" - + serializers { java = "akka.serialization.JavaSerializer" proto = "akka.remote.serialization.ProtobufSerializer" @@ -190,7 +190,7 @@ Member3 { cluster { auto-down-unreachable-after = 100s retry-unsuccessful-join-after = 100ms - + roles = [ "member-3" ] diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/odl-datastore-test.yang b/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/odl-datastore-test.yang index ec1e5a1411..db3e4bc1aa 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/odl-datastore-test.yang +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/resources/odl-datastore-test.yang @@ -48,11 +48,11 @@ module odl-datastore-test { } } } - + container outer-container { } } - + container test2 { presence "needs to be present when empty"; } diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/main/resources/application.conf b/opendaylight/md-sal/sal-remoterpc-connector/src/main/resources/application.conf index 39ac991274..c1c78d36f3 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/src/main/resources/application.conf +++ b/opendaylight/md-sal/sal-remoterpc-connector/src/main/resources/application.conf @@ -23,9 +23,9 @@ odl-cluster-data { netty.tcp { hostname = "127.0.0.1" port = 2550 - maximum-frame-size = 2097152 - send-buffer-size = 52428800 - receive-buffer-size = 52428800 + maximum-frame-size = 2097152 + send-buffer-size = 52428800 + receive-buffer-size = 52428800 } } diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/test/resources/test-rpc.yang b/opendaylight/md-sal/sal-remoterpc-connector/src/test/resources/test-rpc.yang index 3474e91834..3db1f5fdba 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/src/test/resources/test-rpc.yang +++ b/opendaylight/md-sal/sal-remoterpc-connector/src/test/resources/test-rpc.yang @@ -4,7 +4,7 @@ module test-rpc-service { prefix "rpc"; revision "2014-08-28" { - description + description "Initial revision"; } @@ -14,11 +14,11 @@ module test-rpc-service { type string; } } - + output { leaf output-data { type string; } } } -} \ No newline at end of file +} -- 2.36.6