Fix generics warning

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@998128 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2010-09-17 13:43:07 +00:00
parent 0aa3daebee
commit 44b21ca848
1 changed files with 5 additions and 5 deletions

View File

@ -967,13 +967,13 @@ public class Range { // TODO -instantiable superclass
* @return An int array of length 2. The first int is the start index and
* the second int is the end index.
*/
private int[] findRange(List rpl, int min, int start, int end) {
private int[] findRange(List<? extends PropertyNode> rpl, int min, int start, int end) {
int x = min;
PropertyNode node = (PropertyNode) rpl.get(x);
PropertyNode node = rpl.get(x);
while (node==null || (node.getEnd() <= start && x < rpl.size() - 1)) {
x++;
node = (PropertyNode) rpl.get(x);
node = rpl.get(x);
}
if (node.getStart()>end) {
@ -985,10 +985,10 @@ public class Range { // TODO -instantiable superclass
}
int y = x;
node = (PropertyNode) rpl.get(y);
node = rpl.get(y);
while (node==null || (node.getEnd() < end && y < rpl.size() - 1)) {
y++;
node = (PropertyNode) rpl.get(y);
node = rpl.get(y);
}
return new int[] { x, y + 1 };
}