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 { ...@@ -380,11 +380,6 @@ public final class DefaultTrafficTreatment implements TrafficTreatment {
380 } 380 }
381 381
382 @Override 382 @Override
383 - public Builder transition(FlowRule.Type type) {
384 - return add(Instructions.transition(type.ordinal()));
385 - }
386 -
387 - @Override
388 public Builder transition(Integer tableId) { 383 public Builder transition(Integer tableId) {
389 return add(Instructions.transition(tableId)); 384 return add(Instructions.transition(tableId));
390 } 385 }
......
...@@ -269,16 +269,6 @@ public interface TrafficTreatment { ...@@ -269,16 +269,6 @@ public interface TrafficTreatment {
269 Builder meter(MeterId meterId); 269 Builder meter(MeterId meterId);
270 270
271 /** 271 /**
272 - * Sets the next table type to transition to.
273 - *
274 - * @param type the table type
275 - * @return a treatement builder
276 - * @deprecated in Cardinal Release
277 - */
278 - @Deprecated
279 - Builder transition(FlowRule.Type type);
280 -
281 - /**
282 * Sets the next table id to transition to. 272 * Sets the next table id to transition to.
283 * 273 *
284 * @param tableId the table table 274 * @param tableId the table table
......