Fix a raw type warning 73/92373/4
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 2 Sep 2020 10:01:44 +0000 (12:01 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 7 Sep 2020 08:12:52 +0000 (10:12 +0200)
Add a simple wildcard to suppress a warning around raw type.

Change-Id: I7469b88fc4371cf2954cf9dd2688dfedb70fcf23
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
openflowplugin/src/test/java/org/opendaylight/openflowplugin/openflow/md/core/extension/MatchExtensionHelperTest.java

index 9c7444fe577bea13ee4aeded9568d2b480c9cb51..ca3eca65d1a48dd9f13bc819aa1f7dc7ea05394a 100644 (file)
@@ -69,7 +69,7 @@ public class MatchExtensionHelperTest {
     public void testProcessAllExtensions() {
 
         List<MatchEntry> matchEntries = createMatchEntrieses();
-        AugmentTuple augmentTuple = MatchExtensionHelper.processAllExtensions(matchEntries, OpenflowVersion.OF13,
+        AugmentTuple<?> augmentTuple = MatchExtensionHelper.processAllExtensions(matchEntries, OpenflowVersion.OF13,
                 MatchPath.FLOWS_STATISTICS_UPDATE_MATCH);
         assertNotNull(augmentTuple);