Skip to content

Commit

Permalink
remove some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
baiyangzhuhong committed Dec 11, 2024
1 parent 012d7de commit 6cf3afc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public JobScheduler(final CoordinatorRegistryCenter regCenter, final ElasticJob
setUpFacade = new SetUpFacade(regCenter, this.jobConfig.getJobName(), jobListeners);
schedulerFacade = new SchedulerFacade(regCenter, this.jobConfig.getJobName());

// the single sharding scenario and specified SINGLE_SHARDING_BALANCE strategy
if (1 == this.jobConfig.getShardingTotalCount()
&& "SINGLE_SHARDING_BALANCE".equals(this.jobConfig.getJobShardingStrategyType())) {
jobFacade = new SingleShardingJobFacade(regCenter, this.jobConfig.getJobName(), jobListeners, findTracingConfiguration().orElse(null));
Expand All @@ -105,7 +104,6 @@ public JobScheduler(final CoordinatorRegistryCenter regCenter, final String elas
setUpFacade = new SetUpFacade(regCenter, this.jobConfig.getJobName(), jobListeners);
schedulerFacade = new SchedulerFacade(regCenter, this.jobConfig.getJobName());

// the single sharding scenario and specified SINGLE_SHARDING_BALANCE strategy
if (1 == this.jobConfig.getShardingTotalCount()
&& "SINGLE_SHARDING_BALANCE".equals(this.jobConfig.getJobShardingStrategyType())) {
jobFacade = new SingleShardingJobFacade(regCenter, this.jobConfig.getJobName(), jobListeners, findTracingConfiguration().orElse(null));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@
* this is the real round robin balance job running in the job instance dimension.
* </pre>
*
* @author hongzhu
* @version V1.0
* @since 2024-12-03 19:19
*/
public class SingleShardingBalanceJobShardingStrategy implements JobShardingStrategy {

Expand Down

0 comments on commit 6cf3afc

Please sign in to comment.