Removed AvoidStarImport Rule

Added JavaDocType Rule
This commit is contained in:
Mudit Porwal
2017-03-22 01:16:01 +08:00
parent 175e9f58c1
commit 09585c3874
105 changed files with 577 additions and 284 deletions

View File

@ -22,7 +22,8 @@
*/
package com.iluwatar.threadpool;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.util.ArrayList;
import java.util.List;
@ -34,13 +35,12 @@ import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.function.Function;
import java.util.stream.Collectors;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
/**
* Date: 12/30/15 - 18:22 PM
*
* Test for Tasks using a Thread Pool
* @param <T> Type of Task
* @author Jeroen Meulemeester
*/
public abstract class TaskTest<T extends Task> {
@ -140,4 +140,4 @@ public abstract class TaskTest<T extends Task> {
}
}
}
}