Merge "Fix uint warnings in sample-bundles"
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / util / DeviceInitializationUtil.java
index 551d65a0dabbafbb91c4e001600b8604e69274ac..819674df8062f65bf9f6acc9c69f57ceea577570 100644 (file)
@@ -25,7 +25,6 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.fl
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.TableBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.TableKey;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.table.statistics.rev131215.FlowTableStatisticsData;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.table.statistics.rev131215.FlowTableStatisticsDataBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodesBuilder;
@@ -81,9 +80,7 @@ public final class DeviceInitializationUtil {
                             .child(Table.class, new TableKey((short) i)),
                     new TableBuilder()
                             .setId((short) i)
-                            .addAugmentation(
-                                    FlowTableStatisticsData.class,
-                                    new FlowTableStatisticsDataBuilder().build())
+                            .addAugmentation(new FlowTableStatisticsDataBuilder().build())
                             .build());
         }
     }