This is an automated email from the ASF dual-hosted git repository. jxue pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/helix.git
commit 91e84ae711174eabf87268ea87c2ec8d18420d07 Author: Junkai Xue <[email protected]> AuthorDate: Mon Feb 25 16:58:40 2019 -0800 Fix format --- helix-core/src/main/java/org/apache/helix/task/JobRebalancer.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/helix-core/src/main/java/org/apache/helix/task/JobRebalancer.java b/helix-core/src/main/java/org/apache/helix/task/JobRebalancer.java index 92cedf5..1bb3ff4 100644 --- a/helix-core/src/main/java/org/apache/helix/task/JobRebalancer.java +++ b/helix-core/src/main/java/org/apache/helix/task/JobRebalancer.java @@ -33,7 +33,6 @@ import org.apache.helix.AccessOption; import org.apache.helix.HelixDataAccessor; import org.apache.helix.PropertyKey; import org.apache.helix.ZNRecord; -import org.apache.helix.controller.rebalancer.util.RebalanceScheduler; import org.apache.helix.controller.stages.ClusterDataCache; import org.apache.helix.controller.stages.CurrentStateOutput; import org.apache.helix.model.IdealState; @@ -56,8 +55,8 @@ public class JobRebalancer extends TaskRebalancer { private JobDispatcher _jobDispatcher; @Override - public ResourceAssignment computeBestPossiblePartitionState(ClusterDataCache clusterData, IdealState taskIs, - Resource resource, CurrentStateOutput currStateOutput) { + public ResourceAssignment computeBestPossiblePartitionState(ClusterDataCache clusterData, + IdealState taskIs, Resource resource, CurrentStateOutput currStateOutput) { long startTime = System.currentTimeMillis(); final String jobName = resource.getResourceName(); LOG.debug("Computer Best Partition for job: " + jobName);
