Tighten method visibility
Change-Id: I47d46be0c36bf3ee7e4a9bab7f6dd3dfc4d80256
Showing
1 changed file
with
3 additions
and
3 deletions
| ... | @@ -601,7 +601,7 @@ public class FlowRuleManager | ... | @@ -601,7 +601,7 @@ public class FlowRuleManager |
| 601 | 601 | ||
| 602 | private Set<DeviceId> pendingDevices; | 602 | private Set<DeviceId> pendingDevices; |
| 603 | 603 | ||
| 604 | - public FlowOperationsProcessor(FlowRuleOperations ops) { | 604 | + FlowOperationsProcessor(FlowRuleOperations ops) { |
| 605 | this.stages = Lists.newArrayList(ops.stages()); | 605 | this.stages = Lists.newArrayList(ops.stages()); |
| 606 | this.context = ops.callback(); | 606 | this.context = ops.callback(); |
| 607 | this.fops = ops; | 607 | this.fops = ops; |
| ... | @@ -654,7 +654,7 @@ public class FlowRuleManager | ... | @@ -654,7 +654,7 @@ public class FlowRuleManager |
| 654 | } | 654 | } |
| 655 | } | 655 | } |
| 656 | 656 | ||
| 657 | - public void satisfy(DeviceId devId) { | 657 | + void satisfy(DeviceId devId) { |
| 658 | pendingDevices.remove(devId); | 658 | pendingDevices.remove(devId); |
| 659 | if (pendingDevices.isEmpty()) { | 659 | if (pendingDevices.isEmpty()) { |
| 660 | operationsService.execute(this); | 660 | operationsService.execute(this); |
| ... | @@ -663,7 +663,7 @@ public class FlowRuleManager | ... | @@ -663,7 +663,7 @@ public class FlowRuleManager |
| 663 | 663 | ||
| 664 | 664 | ||
| 665 | 665 | ||
| 666 | - public void fail(DeviceId devId, Set<? extends FlowRule> failures) { | 666 | + void fail(DeviceId devId, Set<? extends FlowRule> failures) { |
| 667 | hasFailed.set(true); | 667 | hasFailed.set(true); |
| 668 | pendingDevices.remove(devId); | 668 | pendingDevices.remove(devId); |
| 669 | if (pendingDevices.isEmpty()) { | 669 | if (pendingDevices.isEmpty()) { | ... | ... |
-
Please register or login to post a comment