summaryrefslogtreecommitdiffstats
path: root/toolkit/test/accessibility/AccTreeNode.java
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-28 14:20:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-28 16:15:43 +0200
commit59c05d030e6e95924ef442b23b86b674518e593b (patch)
treea280f6f3c040dafd4707a98f3885a3ccbf39becb /toolkit/test/accessibility/AccTreeNode.java
parentJava5 update - convert to using generics for collections (diff)
downloadcore-59c05d030e6e95924ef442b23b86b674518e593b.tar.gz
core-59c05d030e6e95924ef442b23b86b674518e593b.zip
Make use of autoboxing
Change-Id: I5eb463abbacc8804712a10bdccfe5535ba82c07b
Diffstat (limited to 'toolkit/test/accessibility/AccTreeNode.java')
-rw-r--r--toolkit/test/accessibility/AccTreeNode.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/test/accessibility/AccTreeNode.java b/toolkit/test/accessibility/AccTreeNode.java
index c97225752b2d..47cd3924b7bd 100644
--- a/toolkit/test/accessibility/AccTreeNode.java
+++ b/toolkit/test/accessibility/AccTreeNode.java
@@ -359,7 +359,7 @@ class AccTreeNode
aDescriptor.mnChildCount = nChildCount;
// Fill in the indices of the updated children.
for (int j=0; j<nChildCount; j++)
- aChildIndices.add(new Integer(j+nOffset));
+ aChildIndices.add(j+nOffset);
}
nOffset += aDescriptor.mnChildCount;
}