Skip to content

Commit

Permalink
Fix the lint warning in buildSrc as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ndw committed Mar 26, 2020
1 parent 2b78497 commit ff3db47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public Sequence call(XPathContext xPathContext, Sequence[] sequences) throws XPa

if (width >= 0) {
Int64Value[] props = { new Int64Value(width), new Int64Value(depth) };
ArrayIterator iter = new ArrayIterator(props);
ArrayIterator<Int64Value> iter = new ArrayIterator<Int64Value>(props);
return new AtomicArray(iter);
} else {
return EmptySequence.getInstance();
Expand Down

0 comments on commit ff3db47

Please sign in to comment.