Whitespace change
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/branches/collections_jdk5_branch@471203 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f2ae841af6
commit
d855890756
|
@ -44,7 +44,6 @@ public class CompositeCollection implements Collection {
|
||||||
|
|
||||||
/** CollectionMutator to handle changes to the collection */
|
/** CollectionMutator to handle changes to the collection */
|
||||||
protected CollectionMutator mutator;
|
protected CollectionMutator mutator;
|
||||||
|
|
||||||
/** Collections in the composite */
|
/** Collections in the composite */
|
||||||
protected Collection[] all;
|
protected Collection[] all;
|
||||||
|
|
||||||
|
@ -173,8 +172,7 @@ public class CompositeCollection implements Collection {
|
||||||
Object[] result = null;
|
Object[] result = null;
|
||||||
if (array.length >= size) {
|
if (array.length >= size) {
|
||||||
result = array;
|
result = array;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
result = (Object[]) Array.newInstance(array.getClass().getComponentType(), size);
|
result = (Object[]) Array.newInstance(array.getClass().getComponentType(), size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue