From fe65786f3ce39bf2c5bb3b6afda9c522cae13052 Mon Sep 17 00:00:00 2001 From: Major- Date: Mon, 25 May 2015 15:34:34 +0100 Subject: [PATCH] Improve doc message in ParallelClientSynchronizer. --- src/org/apollo/game/sync/ParallelClientSynchronizer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/org/apollo/game/sync/ParallelClientSynchronizer.java b/src/org/apollo/game/sync/ParallelClientSynchronizer.java index 6d26bbb3..1fb07470 100644 --- a/src/org/apollo/game/sync/ParallelClientSynchronizer.java +++ b/src/org/apollo/game/sync/ParallelClientSynchronizer.java @@ -36,18 +36,18 @@ import org.apollo.util.ThreadUtil; public final class ParallelClientSynchronizer extends ClientSynchronizer { /** - * The executor service. + * The ExecutorService. */ private final ExecutorService executor; /** - * The phaser. + * The Phaser. */ private final Phaser phaser = new Phaser(1); /** - * Creates the parallel client synchronizer backed by a thread pool with a number of threads equal to the number of - * processing cores available (this is found by the {@link ThreadUtil#AVAILABLE_PROCESSORS} method. + * Creates the ParallelClientSynchronizer backed by a thread pool with a number of threads equal to the number of + * processing cores available. */ public ParallelClientSynchronizer() { executor = Executors.newFixedThreadPool(ThreadUtil.AVAILABLE_PROCESSORS, ThreadUtil.create("ClientSynchronizer"));