Sho SHIMIZU
Committed by Gerrit Code Review

Remove final modifier from a private method

Change-Id: I2be844b5e2b6e27ead5056c0563207e4336fc4a1
...@@ -41,7 +41,7 @@ public class DefaultDistributedWorkQueue<E> implements WorkQueue<E> { ...@@ -41,7 +41,7 @@ public class DefaultDistributedWorkQueue<E> implements WorkQueue<E> {
41 .collect(Collectors.toCollection(ArrayList::new))); 41 .collect(Collectors.toCollection(ArrayList::new)));
42 } 42 }
43 43
44 - private final Collection<Task<E>> decodeCollection(Collection<Task<byte[]>> tasks) { 44 + private Collection<Task<E>> decodeCollection(Collection<Task<byte[]>> tasks) {
45 return Collections2.transform(tasks, task -> task.map(serializer::decode)); 45 return Collections2.transform(tasks, task -> task.map(serializer::decode));
46 } 46 }
47 47
......