Skip to content

Commit

Permalink
removed unused imports.
Browse files Browse the repository at this point in the history
Unused and useless imports reduces the code's readability, since their presence can be confusing.
  • Loading branch information
ardevd committed Nov 18, 2020
1 parent e274f0c commit d9d54c2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

import org.junit.Before;
import org.junit.Test;
import org.mockito.ArgumentCaptor;

import java.util.List;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@

import com.techyourchance.threadposter.BackgroundThreadPoster;

import java.util.LinkedList;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.Semaphore;
import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;

/**
* Test double of {@link BackgroundThreadPoster} that can be used in tests in order to establish
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import com.techyourchance.threadposter.UiThreadPoster;

import java.util.LinkedList;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;

Expand Down

0 comments on commit d9d54c2

Please sign in to comment.