Sho SHIMIZU

Remove "public" from Instruction to follow our convention

Change-Id: I60328ef5fa25f33ccf5ae3ce6619a3a75c534c72
...@@ -23,7 +23,7 @@ public interface Instruction { ...@@ -23,7 +23,7 @@ public interface Instruction {
23 /** 23 /**
24 * Represents the type of traffic treatment. 24 * Represents the type of traffic treatment.
25 */ 25 */
26 - public enum Type { 26 + enum Type {
27 /** 27 /**
28 * Signifies that the traffic should be dropped. 28 * Signifies that the traffic should be dropped.
29 */ 29 */
...@@ -67,6 +67,6 @@ public interface Instruction { ...@@ -67,6 +67,6 @@ public interface Instruction {
67 * Returns the type of instruction. 67 * Returns the type of instruction.
68 * @return type of instruction 68 * @return type of instruction
69 */ 69 */
70 - public Type type(); 70 + Type type();
71 71
72 } 72 }
......