Tighten method visibility

Change-Id: I47d46be0c36bf3ee7e4a9bab7f6dd3dfc4d80256
diff --git a/core/net/src/main/java/org/onosproject/net/flow/impl/FlowRuleManager.java b/core/net/src/main/java/org/onosproject/net/flow/impl/FlowRuleManager.java
index 74524ac..8d74464 100644
--- a/core/net/src/main/java/org/onosproject/net/flow/impl/FlowRuleManager.java
+++ b/core/net/src/main/java/org/onosproject/net/flow/impl/FlowRuleManager.java
@@ -601,7 +601,7 @@
 
         private Set<DeviceId> pendingDevices;
 
-        public FlowOperationsProcessor(FlowRuleOperations ops) {
+        FlowOperationsProcessor(FlowRuleOperations ops) {
             this.stages = Lists.newArrayList(ops.stages());
             this.context = ops.callback();
             this.fops = ops;
@@ -654,7 +654,7 @@
             }
         }
 
-        public void satisfy(DeviceId devId) {
+        void satisfy(DeviceId devId) {
             pendingDevices.remove(devId);
             if (pendingDevices.isEmpty()) {
                 operationsService.execute(this);
@@ -663,7 +663,7 @@
 
 
 
-        public void fail(DeviceId devId, Set<? extends FlowRule> failures) {
+        void fail(DeviceId devId, Set<? extends FlowRule> failures) {
             hasFailed.set(true);
             pendingDevices.remove(devId);
             if (pendingDevices.isEmpty()) {