Sho SHIMIZU
Committed by Gerrit Code Review

Remove methods deprecated in Cardinal

Change-Id: I345893732a8902e8485c82026bf12d49feae9464
......@@ -380,11 +380,6 @@ public final class DefaultTrafficTreatment implements TrafficTreatment {
}
@Override
public Builder transition(FlowRule.Type type) {
return add(Instructions.transition(type.ordinal()));
}
@Override
public Builder transition(Integer tableId) {
return add(Instructions.transition(tableId));
}
......
......@@ -269,16 +269,6 @@ public interface TrafficTreatment {
Builder meter(MeterId meterId);
/**
* Sets the next table type to transition to.
*
* @param type the table type
* @return a treatement builder
* @deprecated in Cardinal Release
*/
@Deprecated
Builder transition(FlowRule.Type type);
/**
* Sets the next table id to transition to.
*
* @param tableId the table table
......