Restrict the visibility of methods only accessed from the same package

Change-Id: Ia735baeb6035df597773dfbe260831e97656a9fa
diff --git a/core/store/dist/src/main/java/org/onosproject/store/intent/impl/IntentPartitionManager.java b/core/store/dist/src/main/java/org/onosproject/store/intent/impl/IntentPartitionManager.java
index 565c6cf..bfb4754 100644
--- a/core/store/dist/src/main/java/org/onosproject/store/intent/impl/IntentPartitionManager.java
+++ b/core/store/dist/src/main/java/org/onosproject/store/intent/impl/IntentPartitionManager.java
@@ -112,7 +112,7 @@
      * @param executor scheduled executor service for background tasks
      * @return this PartitionManager
      */
-    public IntentPartitionManager withScheduledExecutor(ScheduledExecutorService executor) {
+    IntentPartitionManager withScheduledExecutor(ScheduledExecutorService executor) {
         this.executor = executor;
         return this;
     }
@@ -155,7 +155,7 @@
         listenerRegistry.removeListener(listener);
     }
 
-    protected void doRebalance() {
+    void doRebalance() {
         rebalanceScheduled.set(false);
         try {
             rebalance();