Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ private Xml.Tag addAttribute(Xml.Tag t, String name, String all, ExecutionContex
}

};
return Preconditions.check(new HasSourcePath("**/beans.xml"), xmlVisitor);
return Preconditions.check(new FindSourceFiles("**/beans.xml"), xmlVisitor);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String getDescription() {

@Override
public TreeVisitor<?, ExecutionContext> getVisitor() {
return Preconditions.check(new HasSourcePath("**/beans.xml"), new XmlVisitor<ExecutionContext>() {
return Preconditions.check(new FindSourceFiles("**/beans.xml"), new XmlVisitor<ExecutionContext>() {
@Override
public Xml visitTag(Xml.Tag tag, ExecutionContext ctx) {
Xml.Tag t = (Xml.Tag) super.visitTag(tag, ctx);
Expand Down

0 comments on commit 8733da7

Please sign in to comment.