Updates due to using latest checkstyle 84/17284/1
authorSam Hague <shague@redhat.com>
Sat, 28 Mar 2015 14:34:53 +0000 (10:34 -0400)
committerSam Hague <shague@redhat.com>
Sat, 28 Mar 2015 14:34:53 +0000 (10:34 -0400)
Change-Id: I5e38107256902e29bb07d88e08dac7e72d1745b0
Signed-off-by: Sam Hague <shague@redhat.com>
library/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/TyperUtils.java

index 6c9a21f9381f04ec5554f652c5277e487cd53907..f5410e3925f378094b183b7bf50beeb3ef0f2bc2 100644 (file)
@@ -54,7 +54,7 @@ public class TyperUtils {
     }
 
     public static ColumnSchema<GenericTableSchema, Object>
-    getColumnSchema(GenericTableSchema tableSchema, String columnName, Class<Object> metaClass) {
+        getColumnSchema(GenericTableSchema tableSchema, String columnName, Class<Object> metaClass) {
         return tableSchema.column(columnName, metaClass);
     }
 
@@ -444,7 +444,6 @@ public class TyperUtils {
         Preconditions.checkNotNull(updates);
         Preconditions.checkNotNull(dbSchema);
         Map<UUID,T> result = new HashMap<UUID,T>();
-        @SuppressWarnings("checkstyle:genericwhitespace")
         Map<UUID,TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema>> rowUpdates =
                 extractRowUpdates(klazz,updates,dbSchema);
         for (TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema> rowUpdate : rowUpdates.values()) {
@@ -476,7 +475,6 @@ public class TyperUtils {
         Preconditions.checkNotNull(updates);
         Preconditions.checkNotNull(dbSchema);
         Map<UUID,T> result = new HashMap<UUID,T>();
-        @SuppressWarnings("checkstyle:genericwhitespace")
         Map<UUID,TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema>> rowUpdates =
                 extractRowUpdates(klazz,updates,dbSchema);
         for (TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema> rowUpdate : rowUpdates.values()) {
@@ -505,9 +503,8 @@ public class TyperUtils {
      * @return Map<UUID,TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema>>
      *     for the type of things being sought
      */
-    @SuppressWarnings("checkstyle:genericwhitespace")
     public static Map<UUID,TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema>>
-    extractRowUpdates(Class<?> klazz,TableUpdates updates,DatabaseSchema dbSchema) {
+        extractRowUpdates(Class<?> klazz,TableUpdates updates,DatabaseSchema dbSchema) {
         Preconditions.checkNotNull(klazz);
         Preconditions.checkNotNull(updates);
         Preconditions.checkNotNull(dbSchema);