Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/commons-collections.git
This commit is contained in:
commit
0dad34216c
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue