Remove "public" from Instruction to follow our convention

Change-Id: I60328ef5fa25f33ccf5ae3ce6619a3a75c534c72
diff --git a/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java b/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java
index 67ea189..b5ddcc1 100644
--- a/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java
+++ b/core/api/src/main/java/org/onosproject/net/flow/instructions/Instruction.java
@@ -23,7 +23,7 @@
     /**
      * Represents the type of traffic treatment.
      */
-    public enum Type {
+    enum Type {
         /**
          * Signifies that the traffic should be dropped.
          */
@@ -67,6 +67,6 @@
      * Returns the type of instruction.
      * @return type of instruction
      */
-    public Type type();
+    Type type();
 
 }