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> {
.collect(Collectors.toCollection(ArrayList::new)));
}
private final Collection<Task<E>> decodeCollection(Collection<Task<byte[]>> tasks) {
private Collection<Task<E>> decodeCollection(Collection<Task<byte[]>> tasks) {
return Collections2.transform(tasks, task -> task.map(serializer::decode));
}
......