From 110658169c280d3f4a0d837dfa56ef5d9d4db801 Mon Sep 17 00:00:00 2001
From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de>
Date: Tue, 19 May 2015 10:41:06 +0200
Subject: [PATCH] removed some more pmd issues

---
 src/main/java/teetime/stage/CipherStage.java  |  4 +-
 src/main/java/teetime/stage/ZipByteArray.java | 20 +++++-----
 .../java/teetime/util/CyclicListIterator.java | 10 ++---
 .../teetime/util/classpath/FileSearcher.java  |  6 +--
 .../takestrategy/SCParkTakeStrategy.java      |  2 +-
 ...CircularWorkStealingDequeWithSentinel.java |  2 +-
 ...kStealingDequeWithThreadLocalSentinel.java |  2 +-
 .../ExceptionalCircularWorkStealingDeque.java |  2 +-
 .../UntypedCircularWorkStealingDeque.java     |  2 +-
 ...dExceptionalCircularWorkStealingDeque.java |  2 +-
 .../list/CommittableResizableArrayQueue.java  |  6 +--
 .../teetime/util/list/ListContainerPool.java  |  2 +-
 .../examples/tokenizer/TokenizerTest.java     |  3 +-
 .../java/teetime/framework/TraversorTest.java | 10 ++---
 .../framework/pipe/PipeFactoryLoaderTest.java |  8 ++--
 .../java/teetime/stage/CipherStageTest.java   | 12 +++---
 .../stage/InitialElementProducerTest.java     | 10 ++---
 .../teetime/stage/InstanceCounterTest.java    | 14 +++----
 .../teetime/stage/InstanceOfFilterTest.java   | 14 +++----
 .../stage/MultipleInstanceOfFilterTest.java   | 14 +++----
 .../basic/distributor/DistributorTest.java    | 40 ++++++++++---------
 .../util/classpath/FileSearcherTest.java      | 12 +++---
 22 files changed, 99 insertions(+), 98 deletions(-)

diff --git a/src/main/java/teetime/stage/CipherStage.java b/src/main/java/teetime/stage/CipherStage.java
index 78d2ef2a..143e9076 100644
--- a/src/main/java/teetime/stage/CipherStage.java
+++ b/src/main/java/teetime/stage/CipherStage.java
@@ -82,8 +82,8 @@ public final class CipherStage extends AbstractConsumerStage<byte[]> {
 	@Override
 	protected void execute(final byte[] element) {
 		try {
-			byte[] output = this.cipher.doFinal(element);
-			this.outputPort.send(output);
+			byte[] outputBytes = this.cipher.doFinal(element);
+			this.outputPort.send(outputBytes);
 		} catch (IllegalBlockSizeException e) {
 			throw new IllegalStateException(e);
 		} catch (BadPaddingException e) {
diff --git a/src/main/java/teetime/stage/ZipByteArray.java b/src/main/java/teetime/stage/ZipByteArray.java
index b59e4e26..0d92875d 100644
--- a/src/main/java/teetime/stage/ZipByteArray.java
+++ b/src/main/java/teetime/stage/ZipByteArray.java
@@ -45,17 +45,17 @@ public final class ZipByteArray extends AbstractConsumerStage<byte[]> {
 
 	@Override
 	protected void execute(final byte[] element) {
-		byte[] cache = null;
+		byte[] streamBytes = null;
 		try {
 			if (mode == ZipMode.COMP) {
-				cache = compress(element);
+				streamBytes = compress(element);
 			} else {
-				cache = decompress(element);
+				streamBytes = decompress(element);
 			}
 		} catch (Exception e) {
 			e.printStackTrace();
 		}
-		outputPort.send(cache);
+		outputPort.send(streamBytes);
 	}
 
 	private byte[] compress(final byte[] data) throws IOException {
@@ -65,17 +65,17 @@ public final class ZipByteArray extends AbstractConsumerStage<byte[]> {
 		ByteArrayOutputStream outputStream = new ByteArrayOutputStream(data.length);
 
 		deflater.finish();
-		byte[] buffer = new byte[1024];
+		byte[] buffer = new byte[1024]; // NOPMD
 		while (!deflater.finished()) {
 			int count = deflater.deflate(buffer); // returns the generated code... index
 			outputStream.write(buffer, 0, count);
 		}
 		outputStream.close();
-		byte[] output = outputStream.toByteArray();
+		byte[] outputBytes = outputStream.toByteArray();
 
 		deflater.end();
 
-		return output;
+		return outputBytes;
 	}
 
 	private byte[] decompress(final byte[] data) throws IOException, DataFormatException {
@@ -83,17 +83,17 @@ public final class ZipByteArray extends AbstractConsumerStage<byte[]> {
 		inflater.setInput(data);
 
 		ByteArrayOutputStream outputStream = new ByteArrayOutputStream(data.length);
-		byte[] buffer = new byte[1024];
+		byte[] buffer = new byte[1024]; // NOPMD
 		while (!inflater.finished()) {
 			int count = inflater.inflate(buffer);
 			outputStream.write(buffer, 0, count);
 		}
 		outputStream.close();
-		byte[] output = outputStream.toByteArray();
+		byte[] outputBytes = outputStream.toByteArray();
 
 		inflater.end();
 
-		return output;
+		return outputBytes;
 	}
 
 	public OutputPort<? extends byte[]> getOutputPort() {
diff --git a/src/main/java/teetime/util/CyclicListIterator.java b/src/main/java/teetime/util/CyclicListIterator.java
index 1579d5d3..7f7ca993 100644
--- a/src/main/java/teetime/util/CyclicListIterator.java
+++ b/src/main/java/teetime/util/CyclicListIterator.java
@@ -44,6 +44,10 @@ public final class CyclicListIterator<T> implements Iterator<T> {
 
 	@Override
 	public T next() {
+		this.currentIndex = this.getCurrentIndex();
+		final T element = this.elements.get(this.currentIndex);
+		this.currentIndex++;
+		return element;
 		// if (!this.iterator.hasNext()) {
 		// this.iterator = this.list.iterator();
 		// }
@@ -52,17 +56,13 @@ public final class CyclicListIterator<T> implements Iterator<T> {
 		// the size of the list could have been changed due to
 		// <li>an index overflow (then restart from index 0), or
 		// <li>an add() or a remove(), so update the index
-		this.currentIndex = this.getCurrentIndex();
-		final T element = this.elements.get(this.currentIndex);
-		this.currentIndex++;
-		return element;
 	}
 
 	@Override
 	public void remove() {
-		// this.iterator.remove();
 		this.currentIndex = this.getCurrentIndex();
 		this.elements.remove(this.currentIndex);
+		// this.iterator.remove();
 	}
 
 	private int getCurrentIndex() {
diff --git a/src/main/java/teetime/util/classpath/FileSearcher.java b/src/main/java/teetime/util/classpath/FileSearcher.java
index be1af821..413bcf4d 100644
--- a/src/main/java/teetime/util/classpath/FileSearcher.java
+++ b/src/main/java/teetime/util/classpath/FileSearcher.java
@@ -30,12 +30,12 @@ public final class FileSearcher {
 	}
 
 	public static List<URL> loadResources(final String name) throws IOException {
-		final List<URL> list = new ArrayList<URL>();
+		final List<URL> urls = new ArrayList<URL>();
 
 		final Enumeration<URL> systemRes = CLASS_LOADER.getResources(name);
 		while (systemRes.hasMoreElements()) { 
-			list.add(systemRes.nextElement()); 
+			urls.add(systemRes.nextElement()); 
 		}
-		return list;
+		return urls;
 	}
 }
diff --git a/src/main/java/teetime/util/concurrent/queue/takestrategy/SCParkTakeStrategy.java b/src/main/java/teetime/util/concurrent/queue/takestrategy/SCParkTakeStrategy.java
index 6875d381..ad814812 100644
--- a/src/main/java/teetime/util/concurrent/queue/takestrategy/SCParkTakeStrategy.java
+++ b/src/main/java/teetime/util/concurrent/queue/takestrategy/SCParkTakeStrategy.java
@@ -26,9 +26,9 @@ public final class SCParkTakeStrategy<E> implements TakeStrategy<E> {
 	private final AtomicReference<Thread> t = new AtomicReference<Thread>(null);
 
 	@Override
+	// Make sure the offer is visible before unpark
 	public void signal()
 	{
-		// Make sure the offer is visible before unpark
 		storeFence = 1; // store barrier
 
 		LockSupport.unpark(t.get()); // t.get() load barrier
diff --git a/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithSentinel.java b/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithSentinel.java
index 3eabf1f6..58294d9f 100644
--- a/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithSentinel.java
+++ b/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithSentinel.java
@@ -59,6 +59,7 @@ public final class CircularWorkStealingDequeWithSentinel<T> {
 	private volatile CircularArray<T> activeArray = new CircularArray<T>(LOG_INITIAL_SIZE);
 
 	private boolean casTop(final long oldVal, final long newVal) {
+		return this.top.compareAndSet(oldVal, newVal);
 		// boolean preCond;
 		// synchronized (this) {
 		// preCond = (this.top == oldVal);
@@ -67,7 +68,6 @@ public final class CircularWorkStealingDequeWithSentinel<T> {
 		// }
 		// }
 		// return preCond;
-		return this.top.compareAndSet(oldVal, newVal);
 	}
 
 	public void pushBottom(final T o) {
diff --git a/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithThreadLocalSentinel.java b/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithThreadLocalSentinel.java
index 5cec666e..3b0327d7 100644
--- a/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithThreadLocalSentinel.java
+++ b/src/main/java/teetime/util/concurrent/workstealing/alternative/CircularWorkStealingDequeWithThreadLocalSentinel.java
@@ -71,6 +71,7 @@ public final class CircularWorkStealingDequeWithThreadLocalSentinel<T> {
 	}
 
 	private boolean casTop(final long oldVal, final long newVal) {
+		return this.top.compareAndSet(oldVal, newVal);
 		// boolean preCond;
 		// synchronized (this) {
 		// preCond = (this.top == oldVal);
@@ -79,7 +80,6 @@ public final class CircularWorkStealingDequeWithThreadLocalSentinel<T> {
 		// }
 		// }
 		// return preCond;
-		return this.top.compareAndSet(oldVal, newVal);
 	}
 
 	public void pushBottom(final T o) {
diff --git a/src/main/java/teetime/util/concurrent/workstealing/alternative/ExceptionalCircularWorkStealingDeque.java b/src/main/java/teetime/util/concurrent/workstealing/alternative/ExceptionalCircularWorkStealingDeque.java
index 4dc084bf..8a45faef 100644
--- a/src/main/java/teetime/util/concurrent/workstealing/alternative/ExceptionalCircularWorkStealingDeque.java
+++ b/src/main/java/teetime/util/concurrent/workstealing/alternative/ExceptionalCircularWorkStealingDeque.java
@@ -43,6 +43,7 @@ public final class ExceptionalCircularWorkStealingDeque<T> {
 	private volatile CircularArray<T> activeArray = new CircularArray<T>(LOG_INITIAL_SIZE);
 
 	private boolean casTop(final long oldVal, final long newVal) {
+		return this.top.compareAndSet(oldVal, newVal);
 		// boolean preCond;
 		// synchronized (this) {
 		// preCond = (this.top == oldVal);
@@ -51,7 +52,6 @@ public final class ExceptionalCircularWorkStealingDeque<T> {
 		// }
 		// }
 		// return preCond;
-		return this.top.compareAndSet(oldVal, newVal);
 	}
 
 	public void pushBottom(final T o) {
diff --git a/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedCircularWorkStealingDeque.java b/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedCircularWorkStealingDeque.java
index e5518e7c..57501cfd 100644
--- a/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedCircularWorkStealingDeque.java
+++ b/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedCircularWorkStealingDeque.java
@@ -39,6 +39,7 @@ public final class UntypedCircularWorkStealingDeque {
 	private volatile CircularArray<Object> activeArray = new CircularArray<Object>(LOG_INITIAL_SIZE);
 
 	private boolean casTop(final long oldVal, final long newVal) {
+		return this.top.compareAndSet(oldVal, newVal);
 		// boolean preCond;
 		// synchronized (this) {
 		// preCond = (this.top == oldVal);
@@ -47,7 +48,6 @@ public final class UntypedCircularWorkStealingDeque {
 		// }
 		// }
 		// return preCond;
-		return this.top.compareAndSet(oldVal, newVal);
 	}
 
 	public void pushBottom(final Object o) {
diff --git a/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedExceptionalCircularWorkStealingDeque.java b/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedExceptionalCircularWorkStealingDeque.java
index f5d37b94..381aea46 100644
--- a/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedExceptionalCircularWorkStealingDeque.java
+++ b/src/main/java/teetime/util/concurrent/workstealing/alternative/UntypedExceptionalCircularWorkStealingDeque.java
@@ -44,6 +44,7 @@ public final class UntypedExceptionalCircularWorkStealingDeque {
 	private volatile CircularArray<Object> activeArray = new CircularArray<Object>(LOG_INITIAL_SIZE);
 
 	private boolean casTop(final long oldVal, final long newVal) {
+		return this.top.compareAndSet(oldVal, newVal);
 		// boolean preCond;
 		// synchronized (this) {
 		// preCond = (this.top == oldVal);
@@ -52,7 +53,6 @@ public final class UntypedExceptionalCircularWorkStealingDeque {
 		// }
 		// }
 		// return preCond;
-		return this.top.compareAndSet(oldVal, newVal);
 	}
 
 	public void pushBottom(final Object o) {
diff --git a/src/main/java/teetime/util/list/CommittableResizableArrayQueue.java b/src/main/java/teetime/util/list/CommittableResizableArrayQueue.java
index 4349a2ae..709d22d7 100644
--- a/src/main/java/teetime/util/list/CommittableResizableArrayQueue.java
+++ b/src/main/java/teetime/util/list/CommittableResizableArrayQueue.java
@@ -51,16 +51,16 @@ public final class CommittableResizableArrayQueue<T> implements CommittableQueue
 
 	@Override
 	public T removeFromHeadUncommitted() {
+		T element = this.get(--this.lastFreeIndexUncommitted);
 		// if (this.capacity() > this.MIN_CAPACITY && this.lastFreeIndexUncommitted < this.capacity() / 2) { // TODO uncomment
 		// this.shrink();
 		// }
-		T element = this.get(--this.lastFreeIndexUncommitted);
 		return element;
 	}
 
 	@Override
+	// TODO set elements to null to help the gc
 	public void commit() {
-		// TODO set elements to null to help the gc
 		this.lastFreeIndex = this.lastFreeIndexUncommitted;
 	}
 
@@ -109,10 +109,10 @@ public final class CommittableResizableArrayQueue<T> implements CommittableQueue
 	}
 
 	private final void copyArray(final T[] elements, final T[] newElements) {
+		System.arraycopy(elements, 0, newElements, 0, this.lastFreeIndexUncommitted + 1);
 		// for (int i = 0; i < this.lastFreeIndexUncommitted; i++) {
 		// newElements[i] = elements[i];
 		// }
-		System.arraycopy(elements, 0, newElements, 0, this.lastFreeIndexUncommitted + 1);
 	}
 
 	private final void put(final int index, final T element) {
diff --git a/src/main/java/teetime/util/list/ListContainerPool.java b/src/main/java/teetime/util/list/ListContainerPool.java
index d470a3ef..8d1d7f94 100644
--- a/src/main/java/teetime/util/list/ListContainerPool.java
+++ b/src/main/java/teetime/util/list/ListContainerPool.java
@@ -20,7 +20,7 @@ import java.util.List;
 
 public final class ListContainerPool<T> implements ObjectPool<ListContainer<T>> {
 
-	private final List<ListContainer<T>> pool = new ArrayList<ListContainer<T>>();
+	private final List<ListContainer<T>> pool = new ArrayList<ListContainer<T>>(); // NOPMD
 
 	public ListContainerPool(int initialPoolSize) {
 		while (initialPoolSize-- > 0) {
diff --git a/src/test/java/teetime/examples/tokenizer/TokenizerTest.java b/src/test/java/teetime/examples/tokenizer/TokenizerTest.java
index b1396eae..070c7224 100644
--- a/src/test/java/teetime/examples/tokenizer/TokenizerTest.java
+++ b/src/test/java/teetime/examples/tokenizer/TokenizerTest.java
@@ -38,8 +38,7 @@ public class TokenizerTest {
 
 	@Test
 	public void executeTest() throws IOException {
-		// Encrypted lorem ipsum
-		final String inputFile = "src/test/resources/data/cipherInput.txt";
+		final String inputFile = "src/test/resources/data/cipherInput.txt"; // Encrypted lorem ipsum
 		final String password = "Password";
 
 		final TokenizerConfiguration configuration = new TokenizerConfiguration(inputFile, password);
diff --git a/src/test/java/teetime/framework/TraversorTest.java b/src/test/java/teetime/framework/TraversorTest.java
index 9f4ef250..35a7826b 100644
--- a/src/test/java/teetime/framework/TraversorTest.java
+++ b/src/test/java/teetime/framework/TraversorTest.java
@@ -41,11 +41,11 @@ public class TraversorTest {
 	public void traverse() {
 		TestConfiguration tc = new TestConfiguration();
 		traversor.traverse(tc.init);
-		Set<Stage> comparingSet = new HashSet<Stage>();
-		comparingSet.add(tc.init);
-		comparingSet.add(tc.f2b);
-		comparingSet.add(tc.distributor);
-		assertTrue(comparingSet.equals(traversor.getVisitedStage()));
+		Set<Stage> comparingStages = new HashSet<Stage>();
+		comparingStages.add(tc.init);
+		comparingStages.add(tc.f2b);
+		comparingStages.add(tc.distributor);
+		assertTrue(comparingStages.equals(traversor.getVisitedStage()));
 	}
 
 	// WordCounterConfiguration
diff --git a/src/test/java/teetime/framework/pipe/PipeFactoryLoaderTest.java b/src/test/java/teetime/framework/pipe/PipeFactoryLoaderTest.java
index f6418cc0..6ca257a8 100644
--- a/src/test/java/teetime/framework/pipe/PipeFactoryLoaderTest.java
+++ b/src/test/java/teetime/framework/pipe/PipeFactoryLoaderTest.java
@@ -35,15 +35,15 @@ public class PipeFactoryLoaderTest {
 
 	@Test
 	public void emptyConfig() throws IOException {
-		final List<IPipeFactory> list = PipeFactoryLoader.loadPipeFactoriesFromClasspath("data/empty-test.conf");
-		Assert.assertEquals(true, list.isEmpty());
+		final List<IPipeFactory> pipeFactories = PipeFactoryLoader.loadPipeFactoriesFromClasspath("data/empty-test.conf");
+		Assert.assertEquals(true, pipeFactories.isEmpty());
 	}
 
 	@Test
 	public void singleConfig() throws IOException {
-		final List<IPipeFactory> list = PipeFactoryLoader.loadPipeFactoriesFromClasspath("pipe-factories.conf");
+		final List<IPipeFactory> pipeFactories = PipeFactoryLoader.loadPipeFactoriesFromClasspath("pipe-factories.conf");
 		final int lines = Files.readLines(new File("target/classes/pipe-factories.conf"), Charsets.UTF_8).size();
-		Assert.assertEquals(lines, list.size());
+		Assert.assertEquals(lines, pipeFactories.size());
 	}
 
 	@Test
diff --git a/src/test/java/teetime/stage/CipherStageTest.java b/src/test/java/teetime/stage/CipherStageTest.java
index 4f2d8799..d1a28829 100644
--- a/src/test/java/teetime/stage/CipherStageTest.java
+++ b/src/test/java/teetime/stage/CipherStageTest.java
@@ -36,14 +36,14 @@ public class CipherStageTest {
 		final CipherStage encryptStage = new CipherStage("somePassword", CipherMode.ENCRYPT);
 		final CipherStage decryptStage = new CipherStage("somePassword", CipherMode.DECRYPT);
 
-		final byte[] input = new byte[] { 1, 2, 3, 4, 5 };
-		final List<byte[]> encryptedResult = new ArrayList<byte[]>();
-		final List<byte[]> decryptedResult = new ArrayList<byte[]>();
+		final byte[] inputBytes = new byte[] { 1, 2, 3, 4, 5 };
+		final List<byte[]> encryptedBytes = new ArrayList<byte[]>();
+		final List<byte[]> decryptedBytes = new ArrayList<byte[]>();
 
-		test(encryptStage).and().send(input).to(encryptStage.getInputPort()).and().receive(encryptedResult).from(encryptStage.getOutputPort()).start();
-		test(decryptStage).and().send(encryptedResult).to(decryptStage.getInputPort()).and().receive(decryptedResult).from(decryptStage.getOutputPort()).start();
+		test(encryptStage).and().send(inputBytes).to(encryptStage.getInputPort()).and().receive(encryptedBytes).from(encryptStage.getOutputPort()).start();
+		test(decryptStage).and().send(encryptedBytes).to(decryptStage.getInputPort()).and().receive(decryptedBytes).from(decryptStage.getOutputPort()).start();
 
-		assertThat(decryptedResult, contains(input));
+		assertThat(decryptedBytes, contains(inputBytes));
 	}
 
 }
diff --git a/src/test/java/teetime/stage/InitialElementProducerTest.java b/src/test/java/teetime/stage/InitialElementProducerTest.java
index 5667be30..9f15e2af 100644
--- a/src/test/java/teetime/stage/InitialElementProducerTest.java
+++ b/src/test/java/teetime/stage/InitialElementProducerTest.java
@@ -87,11 +87,11 @@ public class InitialElementProducerTest {
 
 	@Test
 	public void instantiateWithIterable() {
-		List<Integer> test = new ArrayList<Integer>();
-		test.add(1);
-		test.add(2);
-		test.add(3);
-		producer = new InitialElementProducer<Integer>(test);
+		List<Integer> testIntegers = new ArrayList<Integer>();
+		testIntegers.add(1);
+		testIntegers.add(2);
+		testIntegers.add(3);
+		producer = new InitialElementProducer<Integer>(testIntegers);
 		List<Integer> results = new ArrayList<Integer>();
 
 		test(producer).and().receive(results).from(producer.getOutputPort()).start();
diff --git a/src/test/java/teetime/stage/InstanceCounterTest.java b/src/test/java/teetime/stage/InstanceCounterTest.java
index 65ee1b09..e8286613 100644
--- a/src/test/java/teetime/stage/InstanceCounterTest.java
+++ b/src/test/java/teetime/stage/InstanceCounterTest.java
@@ -66,15 +66,15 @@ public class InstanceCounterTest {
 
 	@Test
 	public void filterShouldWorkWithMultipleInput() {
-		final List<Object> input = new ArrayList<Object>();
+		final List<Object> inputObjects = new ArrayList<Object>();
 
-		input.add(new Object());
-		input.add(new Clazz());
-		input.add(new Object());
-		input.add(new SubClazz());
-		input.add(new Object());
+		inputObjects.add(new Object());
+		inputObjects.add(new Clazz());
+		inputObjects.add(new Object());
+		inputObjects.add(new SubClazz());
+		inputObjects.add(new Object());
 
-		test(this.filter).and().send(input).to(this.filter.getInputPort()).start();
+		test(this.filter).and().send(inputObjects).to(this.filter.getInputPort()).start();
 
 		assertThat(this.filter.getCounter(), is(2));
 	}
diff --git a/src/test/java/teetime/stage/InstanceOfFilterTest.java b/src/test/java/teetime/stage/InstanceOfFilterTest.java
index 186ce0c4..8abd3018 100644
--- a/src/test/java/teetime/stage/InstanceOfFilterTest.java
+++ b/src/test/java/teetime/stage/InstanceOfFilterTest.java
@@ -88,16 +88,16 @@ public class InstanceOfFilterTest {
 	@Test
 	public void filterShouldWorkWithMultipleInput() {
 		final List<Clazz> results = new ArrayList<InstanceOfFilterTest.Clazz>();
-		final List<Object> input = new ArrayList<Object>();
+		final List<Object> inputObjects = new ArrayList<Object>();
 
-		input.add(new Object());
-		input.add(new Clazz());
-		input.add(new Object());
-		input.add(new SubClazz());
-		input.add(new Object());
+		inputObjects.add(new Object());
+		inputObjects.add(new Clazz());
+		inputObjects.add(new Object());
+		inputObjects.add(new SubClazz());
+		inputObjects.add(new Object());
 
 		test(filter)
-				.and().send(input).to(filter.getInputPort())
+				.and().send(inputObjects).to(filter.getInputPort())
 				.and().receive(results).from(filter.getMatchedOutputPort())
 				.start();
 
diff --git a/src/test/java/teetime/stage/MultipleInstanceOfFilterTest.java b/src/test/java/teetime/stage/MultipleInstanceOfFilterTest.java
index 6221ba77..a1b8577b 100644
--- a/src/test/java/teetime/stage/MultipleInstanceOfFilterTest.java
+++ b/src/test/java/teetime/stage/MultipleInstanceOfFilterTest.java
@@ -39,24 +39,24 @@ public class MultipleInstanceOfFilterTest {
 	@SuppressWarnings("unchecked")
 	public void filteringForSingleTypeShouldWork() {
 		final MultipleInstanceOfFilter<Object> filter = new MultipleInstanceOfFilter<Object>();
-		final List<Object> input = new ArrayList<Object>(Arrays.asList("1", 1.5f, "2", 2.5f, "3", 3.5f));
-		final List<String> result = new ArrayList<String>();
+		final List<Object> inputObjects = new ArrayList<Object>(Arrays.asList("1", 1.5f, "2", 2.5f, "3", 3.5f));
+		final List<String> receivedStrings = new ArrayList<String>();
 
-		StageTester.test(filter).and().send(input).to(filter.getInputPort()).and().receive(result).from(filter.getOutputPortForType(String.class)).start();
+		StageTester.test(filter).and().send(inputObjects).to(filter.getInputPort()).and().receive(receivedStrings).from(filter.getOutputPortForType(String.class)).start();
 
-		assertThat(result, is(not(empty())));
-		assertThat(result, contains("1", "2", "3"));
+		assertThat(receivedStrings, is(not(empty())));
+		assertThat(receivedStrings, contains("1", "2", "3"));
 	}
 
 	@Test
 	@SuppressWarnings("unchecked")
 	public void filteringForMultipleTypesShouldWork() {
 		final MultipleInstanceOfFilter<Number> filter = new MultipleInstanceOfFilter<Number>();
-		final List<Number> input = new ArrayList<Number>(Arrays.asList(1, 1.5f, 2, 2.5f, 3, 3.5f));
+		final List<Number> inputObjects = new ArrayList<Number>(Arrays.asList(1, 1.5f, 2, 2.5f, 3, 3.5f));
 		final List<Integer> integers = new ArrayList<Integer>();
 		final List<Float> floats = new ArrayList<Float>();
 
-		StageTester.test(filter).and().send(input).to(filter.getInputPort()).and().receive(integers).from(filter.getOutputPortForType(Integer.class)).and()
+		StageTester.test(filter).and().send(inputObjects).to(filter.getInputPort()).and().receive(integers).from(filter.getOutputPortForType(Integer.class)).and()
 				.receive(floats).from(filter.getOutputPortForType(Float.class)).start();
 
 		assertThat(integers, contains(1, 2, 3));
diff --git a/src/test/java/teetime/stage/basic/distributor/DistributorTest.java b/src/test/java/teetime/stage/basic/distributor/DistributorTest.java
index 9f40fe64..ecdeb41c 100644
--- a/src/test/java/teetime/stage/basic/distributor/DistributorTest.java
+++ b/src/test/java/teetime/stage/basic/distributor/DistributorTest.java
@@ -32,7 +32,7 @@ import org.junit.rules.ExpectedException;
 
 /**
  * @author Nils Christian Ehmke
- * 
+ *
  * @since 1.0
  */
 public class DistributorTest {
@@ -41,58 +41,60 @@ public class DistributorTest {
 	public ExpectedException expectedException = ExpectedException.none();
 
 	private Distributor<Integer> distributor;
-	private List<Integer> fstList;
-	private List<Integer> sndList;
+	private List<Integer> firstIntegers;
+	private List<Integer> secondIntegers;
 
 	@Before
 	public void initializeDistributor() throws Exception {
 		this.distributor = new Distributor<Integer>();
-		this.fstList = new ArrayList<Integer>();
-		this.sndList = new ArrayList<Integer>();
+		this.firstIntegers = new ArrayList<Integer>();
+		this.secondIntegers = new ArrayList<Integer>();
 	}
 
 	@Test
 	public void roundRobinShouldWork() {
 		distributor.setStrategy(new RoundRobinStrategy());
 
-		test(distributor).and().send(1, 2, 3, 4, 5).to(distributor.getInputPort()).and().receive(fstList).from(distributor.getNewOutputPort()).and()
-				.receive(sndList).from(distributor.getNewOutputPort()).start();
+		test(distributor).and().send(1, 2, 3, 4, 5).to(distributor.getInputPort()).and().receive(firstIntegers).from(distributor.getNewOutputPort()).and()
+				.receive(secondIntegers).from(distributor.getNewOutputPort()).start();
 
-		assertThat(this.fstList, contains(1, 3, 5));
-		assertThat(this.sndList, contains(2, 4));
+		assertThat(this.firstIntegers, contains(1, 3, 5));
+		assertThat(this.secondIntegers, contains(2, 4));
 	}
 
 	@Test
 	public void singleElementRoundRobinShouldWork() {
 		distributor.setStrategy(new RoundRobinStrategy());
 
-		test(distributor).and().send(1).to(distributor.getInputPort()).and().receive(fstList).from(distributor.getNewOutputPort()).and().receive(sndList)
+		test(distributor).and().send(1).to(distributor.getInputPort()).and().receive(firstIntegers).from(distributor.getNewOutputPort()).and()
+				.receive(secondIntegers)
 				.from(distributor.getNewOutputPort()).start();
 
-		assertThat(this.fstList, contains(1));
-		assertThat(this.sndList, is(empty()));
+		assertThat(this.firstIntegers, contains(1));
+		assertThat(this.secondIntegers, is(empty()));
 	}
 
 	@Test
 	public void copyByReferenceShouldWork() {
 		distributor.setStrategy(new CopyByReferenceStrategy());
 
-		test(distributor).and().send(1, 2, 3, 4, 5).to(distributor.getInputPort()).and().receive(fstList).from(distributor.getNewOutputPort()).and()
-				.receive(sndList).from(distributor.getNewOutputPort()).start();
+		test(distributor).and().send(1, 2, 3, 4, 5).to(distributor.getInputPort()).and().receive(firstIntegers).from(distributor.getNewOutputPort()).and()
+				.receive(secondIntegers).from(distributor.getNewOutputPort()).start();
 
-		assertThat(this.fstList, contains(1, 2, 3, 4, 5));
-		assertThat(this.sndList, contains(1, 2, 3, 4, 5));
+		assertThat(this.firstIntegers, contains(1, 2, 3, 4, 5));
+		assertThat(this.secondIntegers, contains(1, 2, 3, 4, 5));
 	}
 
 	@Test
 	public void singleElementCopyByReferenceShouldWork() {
 		distributor.setStrategy(new CopyByReferenceStrategy());
 
-		test(distributor).and().send(1).to(distributor.getInputPort()).and().receive(fstList).from(distributor.getNewOutputPort()).and().receive(sndList)
+		test(distributor).and().send(1).to(distributor.getInputPort()).and().receive(firstIntegers).from(distributor.getNewOutputPort()).and()
+				.receive(secondIntegers)
 				.from(distributor.getNewOutputPort()).start();
 
-		assertThat(this.fstList, contains(1));
-		assertThat(this.sndList, contains(1));
+		assertThat(this.firstIntegers, contains(1));
+		assertThat(this.secondIntegers, contains(1));
 	}
 
 	@Test
diff --git a/src/test/java/teetime/util/classpath/FileSearcherTest.java b/src/test/java/teetime/util/classpath/FileSearcherTest.java
index b79e6fa7..05eedee1 100644
--- a/src/test/java/teetime/util/classpath/FileSearcherTest.java
+++ b/src/test/java/teetime/util/classpath/FileSearcherTest.java
@@ -30,20 +30,20 @@ public class FileSearcherTest {
 
 	@Test
 	public void fileInClasspath() throws IOException {
-		final List<URL> list = FileSearcher.loadResources("pipe-factories.conf");
-		Assert.assertEquals(false, list.isEmpty()); 
+		final List<URL> urls = FileSearcher.loadResources("pipe-factories.conf");
+		Assert.assertEquals(false, urls.isEmpty()); 
 	}
 
 	@Test
 	public void multipleFiles() throws IOException {
-		final List<URL> list = FileSearcher.loadResources("LICENSE.txt");
-		Assert.assertEquals(true, list.size() > 1); 
+		final List<URL> urls = FileSearcher.loadResources("LICENSE.txt");
+		Assert.assertEquals(true, urls.size() > 1); 
 	}
 
 	@Test
 	public void missingFile() throws IOException {
-		final List<URL> list = FileSearcher.loadResources("filethatdoesnotexistinanyproject.nope");
-		Assert.assertEquals(true, list.isEmpty()); 
+		final List<URL> urls = FileSearcher.loadResources("filethatdoesnotexistinanyproject.nope");
+		Assert.assertEquals(true, urls.isEmpty()); 
 	}
 
 }
-- 
GitLab