Skip to content

Commit

Permalink
Merge pull request #150 from ndw/fix-gradle-repo
Browse files Browse the repository at this point in the history
Fix gradle repo
  • Loading branch information
ndw authored Mar 26, 2020
2 parents 5886dc4 + ff3db47 commit d31418f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -680,17 +680,17 @@ publishing {
}

repositories {
/*
maven {
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username = sonatypeUsername
password = sonatypePassword
}
*/

}
/*
maven {
url 'file://tmp/repo'
}
*/
}
}
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 d31418f

Please sign in to comment.