Checkstyle clean-up invalid license headers containing Authors. 61/40961/5
authorMichael Vorburger <vorburger@redhat.com>
Tue, 28 Jun 2016 18:56:42 +0000 (20:56 +0200)
committerMichael Vorburger <vorburger@redhat.com>
Thu, 30 Jun 2016 10:15:24 +0000 (12:15 +0200)
incl. some automated clean-up actions which I make Eclipse do autom.

This is part of a set of changes that are required in order to be able
to enable Checkstyle enforcement for src/test/java as well globally, see
https://git.opendaylight.org/gerrit/#/c/40957/

Change-Id: I37d19d5826135006ff94608ce703d5cc054333fb
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
16 files changed:
library/impl/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcDecoderTest.java
library/impl/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/NettyBootStrapper.java
library/impl/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/TestClient.java
library/impl/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/TestTokens.java
library/impl/src/test/java/org/opendaylight/ovsdb/lib/notation/VersionTest.java
library/impl/src/test/java/org/opendaylight/ovsdb/lib/schema/OvsdbSchemaTest.java
library/it/src/test/java/org/opendaylight/ovsdb/integrationtest/ovsdbclient/OvsdbClientTestIT.java
library/it/src/test/java/org/opendaylight/ovsdb/integrationtest/ovsdbclient/OvsdbClientTestTypedIT.java
library/it/src/test/java/org/opendaylight/ovsdb/integrationtest/ovsdbclient/TestBridge.java
library/it/src/test/java/org/opendaylight/ovsdb/integrationtest/ovsdbclient/VersionIncompatibleBridge.java
library/it/src/test/java/org/opendaylight/ovsdb/integrationtest/schema/HardwareVTEPIT.java
library/it/src/test/java/org/opendaylight/ovsdb/integrationtest/schema/OpenVSwitchIT.java
schemas/hardwarevtep/src/test/java/org/opendaylight/ovsdb/schema/hardwarevtep/HardwareVTEPTest.java
schemas/openvswitch/src/test/java/org/opendaylight/ovsdb/schema/openvswitch/OpenVSwitchTest.java
utils/config/src/test/java/org/opendaylight/ovsdb/utils/config/ConfigPropertiesTest.java
utils/servicehelper/src/test/java/org/opendaylight/ovsdb/utils/servicehelper/ServiceHelperTest.java

index 98703b99f2de4941d5ec1e927cc3d9da6fb5039c..a75324cea42e70994f63b49a6cb7c09f17507b00 100644 (file)
@@ -4,10 +4,7 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Dave Tucker
  */
-
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import static io.netty.buffer.Unpooled.copiedBuffer;
@@ -113,7 +110,7 @@ public class JsonRpcDecoderTest {
         ch.writeInbound(copiedBuffer(testJson, CharsetUtil.UTF_16));
         ch.finish();
     }
-    /* Disabling this test as the limit was changed 
+    /* Disabling this test as the limit was changed
      * from exception to a log warning...
     /**
      * Test whether decoder throws appropriate TooLongFrameException
index 486613143f39c0a6f0d452c53eccd3d37dc7918b..752ef3818fe15d1ab7dc232d7da64be1c7d6bce9 100644 (file)
@@ -4,8 +4,6 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Aswin Raveendran
  */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
index 22b1285f0b50f187b5f6d3eb2f1fa72d396cb660..7d5299ec30883dcaefb9f33536c14a4f620c2ff6 100644 (file)
@@ -4,8 +4,6 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Aswin Raveendran
  */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
index a12b1076d671945e7e904eaf10d8ddd82e18b1d7..512d007f662bcb13b2cd7e4de94aa925be4fe1ed 100644 (file)
@@ -4,8 +4,6 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Aswin Raveendran
  */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
@@ -14,7 +12,6 @@ import com.google.common.reflect.TypeToken;
 import com.google.common.util.concurrent.ListenableFuture;
 import java.lang.reflect.Method;
 
-
 public class TestTokens {
 
     public ListenableFuture<String> getString() {
index 6eb903358de7d328336bc83647d8780bab6225b0..1c93c830ffeb0446c8be03128ae5b09ed9732e3b 100755 (executable)
@@ -4,10 +4,7 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Dave Tucker
  */
-
 package org.opendaylight.ovsdb.lib.notation;
 
 import org.junit.Test;
@@ -65,11 +62,4 @@ public class VersionTest {
 
     }
 
-    /* TODO: Incomplete compare test
-     */
-    @Test
-    public void testCompare() throws Exception {
-        Version a = Version.fromString("6.9.3");
-        Version b = Version.fromString("7.1.0");
-    }
 }
index c9f436353b278a8a5a83e7f3523f85a9c145d37c..8fef01438b8d2a47312ae3e9725723b0ad488c06 100644 (file)
@@ -4,8 +4,6 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Ashwin Raveendran
  */
 package org.opendaylight.ovsdb.lib.schema;
 
@@ -19,7 +17,6 @@ import static org.junit.Assert.assertNotNull;
 import java.io.IOException;
 import java.io.InputStream;
 
-
 public class OvsdbSchemaTest {
 
      /**
index cb7c5786f5ac4cf993aa0e9546c2ffe549c7a1b6..501d1807a1f394ad7a89e137c3ae4d11121c32da 100644 (file)
@@ -4,8 +4,6 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Ashwin Raveendran
  */
 package org.opendaylight.ovsdb.integrationtest.ovsdbclient;
 
@@ -52,7 +50,6 @@ import org.opendaylight.ovsdb.lib.schema.TableSchema;
 import org.ops4j.pax.exam.junit.PaxExam;
 import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
 import org.ops4j.pax.exam.spi.reactors.PerClass;
-import org.ops4j.pax.exam.spi.reactors.PerSuite;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -74,7 +71,7 @@ public class OvsdbClientTestIT extends LibraryIntegrationTestBase {
     public void testTransact() throws IOException, InterruptedException, ExecutionException {
         assertNotNull(dbSchema);
         TableSchema<GenericTableSchema> bridge = dbSchema.table("Bridge", GenericTableSchema.class);
-        ColumnSchema<GenericTableSchema, String> name = bridge.column("name", String.class);
+        bridge.column("name", String.class);
 
         createBridgeTransaction();
         abortTransaction();
@@ -187,7 +184,6 @@ public class OvsdbClientTestIT extends LibraryIntegrationTestBase {
         assertNotNull(dbSchema);
         GenericTableSchema ovsTable = dbSchema.table("Open_vSwitch", GenericTableSchema.class);
 
-        List<MonitorRequest> monitorRequests = Lists.newArrayList();
         ColumnSchema<GenericTableSchema, UUID> _uuid = ovsTable.column("_uuid", UUID.class);
 
         List<OperationResult> results = ovs.transactBuilder(dbSchema)
index 80b8cd84ec76a18c1073776d43b16e9999069abd..7a0bf7d5b59d7684926088df6cc0d491f22c191e 100644 (file)
@@ -4,10 +4,7 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Ashwin Raveendran, Madhu Venugopal
  */
-
 package org.opendaylight.ovsdb.integrationtest.ovsdbclient;
 
 import static org.junit.Assert.assertEquals;
@@ -42,7 +39,6 @@ import org.opendaylight.ovsdb.lib.schema.TableSchema;
 import org.ops4j.pax.exam.junit.PaxExam;
 import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
 import org.ops4j.pax.exam.spi.reactors.PerClass;
-import org.ops4j.pax.exam.spi.reactors.PerSuite;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
index 9c0645ed29083635f512adee30aa653db5f928d2..7f010e2d79c5d753a5498014d91327949d84c7b4 100644 (file)
@@ -4,10 +4,7 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Madhu Venugopal
  */
-
 package org.opendaylight.ovsdb.integrationtest.ovsdbclient;
 
 import java.util.Map;
index 8496f3fa022b33422c0e47788eb58716582b4bf0..243c1a344a52cd522888b4d181b7a7c0f16f157f 100644 (file)
@@ -4,11 +4,9 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Madhu Venugopal
  */
-
 package org.opendaylight.ovsdb.integrationtest.ovsdbclient;
+
 import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
 
index 28266fe0795ab2708e1fb725401f7f2bb9959d54..ae8ad4c6adf9a904e2a8862d32b190f676c837c4 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2014 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2014 Red Hat, 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,
- *  and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Sam Hague, Matt Oswalt
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.ovsdb.integrationtest.schema;
 
index 249949cd3e4eda9bab362d1e212623a777f4128f..df83cba30f7527a99421ab0265459dd8401cfd5e 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2014 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2014 Red Hat, 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,
- *  and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Sam Hague, Matt Oswalt
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.ovsdb.integrationtest.schema;
 
index 2fe9a04593a1c208f3a1803f99d29a349e4f2d68..306454ac76b35613f728f98596f96d4a6b9ff039 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2014 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2014 Red Hat, 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,
- *  and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Sam Hague
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.ovsdb.schema.hardwarevtep;
 
index 32adb5dd8e2abcfd659a1c89550ecb5635cfdf7d..a9aa04d1c65a26af1846c07c9e1727c8c78e6ed7 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2014 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2014 Red Hat, 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,
- *  and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Sam Hague
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.ovsdb.schema.openvswitch;
 
@@ -14,8 +12,9 @@ import static org.junit.Assert.assertTrue;
 import org.junit.Test;
 
 public class OpenVSwitchTest {
+
     @Test
-    public void setBridgesTest () {
+    public void setBridgesTest() {
         assertTrue(true);
     }
 }
index d0fac74adc426fa3284a3f3aa3a8d7335e9f93bd..69f08f28c2b4b511566b00d17fbd12aabaf9e65b 100644 (file)
@@ -1,12 +1,10 @@
 /*
-* Copyright (C) 2014 Red Hat, 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,
-* and is available at http://www.eclipse.org/legal/epl-v10.html
-*
-* Authors : Flavio Fernandes
-*/
+ * Copyright (C) 2014 Red Hat, 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,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.ovsdb.utils.config;
 
 import static org.junit.Assert.assertEquals;
index d04b15a970067771ac20cc2d613dc6f6f6786a59..95286b54ae278b522beaa9e1bfeb249ed4deb11e 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2015 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2015 Red Hat, 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,
- *  and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- *  Authors : Sam Hague
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.ovsdb.utils.servicehelper;
 
@@ -23,8 +21,7 @@ import org.powermock.modules.junit4.PowerMockRunner;
 import org.springframework.osgi.mock.MockBundle;
 
 /**
- * JUnit test for
- * {@link ServiceHelper}
+ * JUnit test for {@link ServiceHelper}.
  */
 @RunWith(PowerMockRunner.class)
 @PrepareForTest(FrameworkUtil.class)