Tighten method visibility
Change-Id: I47d46be0c36bf3ee7e4a9bab7f6dd3dfc4d80256
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -580,7 +580,7 @@ public class FlowRuleManager | ... | @@ -580,7 +580,7 @@ public class FlowRuleManager |
580 | 580 | ||
581 | private final Set<DeviceId> pendingDevices = Sets.newConcurrentHashSet(); | 581 | private final Set<DeviceId> pendingDevices = Sets.newConcurrentHashSet(); |
582 | 582 | ||
583 | - public FlowOperationsProcessor(FlowRuleOperations ops) { | 583 | + FlowOperationsProcessor(FlowRuleOperations ops) { |
584 | this.stages = Lists.newArrayList(ops.stages()); | 584 | this.stages = Lists.newArrayList(ops.stages()); |
585 | this.context = ops.callback(); | 585 | this.context = ops.callback(); |
586 | this.fops = ops; | 586 | this.fops = ops; |
... | @@ -632,7 +632,7 @@ public class FlowRuleManager | ... | @@ -632,7 +632,7 @@ public class FlowRuleManager |
632 | } | 632 | } |
633 | } | 633 | } |
634 | 634 | ||
635 | - public void satisfy(DeviceId devId) { | 635 | + void satisfy(DeviceId devId) { |
636 | pendingDevices.remove(devId); | 636 | pendingDevices.remove(devId); |
637 | if (pendingDevices.isEmpty()) { | 637 | if (pendingDevices.isEmpty()) { |
638 | operationsService.execute(this); | 638 | operationsService.execute(this); |
... | @@ -641,7 +641,7 @@ public class FlowRuleManager | ... | @@ -641,7 +641,7 @@ public class FlowRuleManager |
641 | 641 | ||
642 | 642 | ||
643 | 643 | ||
644 | - public void fail(DeviceId devId, Set<? extends FlowRule> failures) { | 644 | + void fail(DeviceId devId, Set<? extends FlowRule> failures) { |
645 | hasFailed.set(true); | 645 | hasFailed.set(true); |
646 | pendingDevices.remove(devId); | 646 | pendingDevices.remove(devId); |
647 | if (pendingDevices.isEmpty()) { | 647 | if (pendingDevices.isEmpty()) { | ... | ... |
-
Please register or login to post a comment