This commit is contained in:
Gary Gregory 2018-07-27 08:48:26 -06:00
commit 0dad34216c
2 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,9 @@
</properties>
<body>
<release version="4.3" date="2018-MM-DD" description="Bug fixes, and small changes.">
<action issue="COLLECTIONS-691" dev="kinow" type="fix" due-to="Eitan Adler">
Use boolean operator for boolean result
</action>
<action issue="COLLECTIONS-688" dev="ggregory" type="update">
Update platform requirement from Java 7 to 8.
</action>

View File

@ -153,7 +153,7 @@ public class GrowthList<E> extends AbstractSerializableListDecorator<E> {
decorated().addAll(Collections.<E>nCopies(index - size, null));
result = true;
}
return decorated().addAll(index, coll) | result;
return decorated().addAll(index, coll) || result;
}
//-----------------------------------------------------------------------