Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SimY4 committed May 28, 2018
1 parent ea5bdb1 commit 6aa2ffc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Include an artifact with necessary model extension into your project:
<dependency>
<groupId>com.github.simy4</groupId>
<artifactId>xpath-to-xml-dom</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = com.github.simy4.xpath
version = 1.0.3-SNAPSHOT
version = 1.0.3

projectDescription = Convenient utility to build XML models by evaluating XPath expressions
projectUrl = https://github.com/SimY4/xpath-to-xml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private boolean test(String expected, String actual) {

}

private final class PredicateResolver<T extends Node> implements Predicate<NodeView<T>> {
private static final class PredicateResolver<T extends Node> implements Predicate<NodeView<T>> {

private final ViewContext<T> parentContext;
private final Iterator<NodeView<T>> iterator;
Expand All @@ -141,7 +141,7 @@ public boolean test(NodeView<T> view) {

}

private final class PredicateContext<T extends Node> implements Function<NodeView<T>, NodeView<T>> {
private static final class PredicateContext<T extends Node> implements Function<NodeView<T>, NodeView<T>> {

private NodeView<T> last;
private int position;
Expand Down

0 comments on commit 6aa2ffc

Please sign in to comment.