Resolve "Force formatting"

This commit is contained in:
Andreas Penski 2020-09-03 06:02:42 +00:00
parent bc9acc3a0a
commit 69d6e55f14
45 changed files with 535 additions and 538 deletions

View file

@ -24,7 +24,6 @@ import java.util.stream.Collectors;
import org.w3c.dom.Document;
/**
* Main validator interface for checking incoming files.
*
@ -33,8 +32,8 @@ import org.w3c.dom.Document;
public interface Check {
/**
* Checks an incoming xml {@link Input Inputs}. The result-{@link Document} is readonly. To change the this document you
* need to copy the nodes into an new {@link Document}.
* Checks an incoming xml {@link Input Inputs}. The result-{@link Document} is readonly. To change the this document
* you need to copy the nodes into an new {@link Document}.
*
* @param input the resource / xml file to validate.
* @return a result-{@link Document} (readonly)
@ -75,5 +74,4 @@ public interface Check {
return input.stream().map(this::checkInput).collect(Collectors.toList());
}
}