Skip to content

Commit

Permalink
#9 no need to kill all-any
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 26, 2021
1 parent 5b1787e commit 0902c42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 39 deletions.
6 changes: 2 additions & 4 deletions src/main/java/org/polystat/far/Reverses.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,8 @@ public Collection<String> errors(final String locator) throws IOException {
dirs.xpath(String.format("/o/input[%d]", idx + 1));
dirs.attr("found", found);
}
out = Reverses.xsl("remove-all-any.xsl").transform(
Reverses.xsl("remove-false-inputs.xsl").transform(
new XMLDocument(new Xembler(dirs).applyQuietly(out.node()))
)
out = Reverses.xsl("remove-false-inputs.xsl").transform(
new XMLDocument(new Xembler(dirs).applyQuietly(out.node()))
);
Logger.debug(this, "XML output:%n%s", out);
for (final XML bug : out.nodes("/o/input[@found]")) {
Expand Down
35 changes: 0 additions & 35 deletions src/main/resources/org/polystat/far/remove-all-any.xsl

This file was deleted.

0 comments on commit 0902c42

Please sign in to comment.