Hide TyperUtils.extractRowUpdates() 13/86213/2
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 1 Dec 2019 09:45:47 +0000 (10:45 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 5 Dec 2019 12:45:59 +0000 (13:45 +0100)
This is an internal utility method not used anywhere else, hide
it.

Change-Id: Ie3d7f0d7d2496bb17f323bb5f0848fc88a61b511
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit 66489f05a0ea64c09f5f33d64e5ec5a8ebbd1f69)

library/impl/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/TyperUtils.java

index 3fedd6b1191f1ed114efdea98d8ec4fc1b0e40a6..1d14de9af90a9d41ff8bfe8beb019b4c7d130c53 100644 (file)
@@ -478,8 +478,8 @@ public final class TyperUtils {
      * @return Map&lt;UUID,TableUpdate&lt;GenericTableSchema&gt;.RowUpdate&lt;GenericTableSchema&gt;&gt;
      *     for the type of things being sought
      */
-    public static Map<UUID,TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema>>
-        extractRowUpdates(final Class<?> klazz,final TableUpdates updates,final DatabaseSchema dbSchema) {
+    static Map<UUID,TableUpdate<GenericTableSchema>.RowUpdate<GenericTableSchema>> extractRowUpdates(
+            final Class<?> klazz,final TableUpdates updates,final DatabaseSchema dbSchema) {
         Preconditions.checkNotNull(klazz);
         Preconditions.checkNotNull(updates);
         Preconditions.checkNotNull(dbSchema);