Make classes public

This commit is contained in:
norman 2012-03-07 13:30:45 +01:00
parent 0b0edea6bc
commit e8c64ea593
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ import java.util.concurrent.Executor;
*/
public class NioDatagramWorkerPool extends AbstractNioWorkerPool<NioDatagramWorker> {
protected NioDatagramWorkerPool(Executor executor, int workerCount, boolean allowShutdownOnIdle) {
public NioDatagramWorkerPool(Executor executor, int workerCount, boolean allowShutdownOnIdle) {
super(executor, workerCount, allowShutdownOnIdle);
}

View File

@ -25,7 +25,7 @@ import java.util.concurrent.Executor;
*/
public class NioWorkerPool extends AbstractNioWorkerPool<NioWorker> {
NioWorkerPool(Executor executor, int workerCount, boolean allowShutdownOnIdle) {
public NioWorkerPool(Executor executor, int workerCount, boolean allowShutdownOnIdle) {
super(executor, workerCount, allowShutdownOnIdle);
}