Redundant return.

This commit is contained in:
Gary Gregory 2020-11-21 13:49:36 -05:00
parent 1ade1ce394
commit 536566350c
2 changed files with 0 additions and 2 deletions

View File

@ -268,7 +268,6 @@ public abstract class AbstractMapBag<E> implements Bag<E> {
return true; return true;
} }
mut.value += nCopies; mut.value += nCopies;
return false;
} }
return false; return false;
} }

View File

@ -153,7 +153,6 @@ public class LazyList<E> extends AbstractSerializableListDecorator<E> {
// item is a place holder, create new one, set and return // item is a place holder, create new one, set and return
object = element(index); object = element(index);
decorated().set(index, object); decorated().set(index, object);
return object;
} }
// good and ready to go // good and ready to go
return object; return object;