checkstyle-suppressions.xml: make paths work on windows

This commit is contained in:
pascalschumacher 2017-03-19 10:32:33 +01:00
parent 99900ae089
commit e702828e7b
1 changed files with 2 additions and 3 deletions

View File

@ -15,9 +15,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<suppress checks="JavadocMethod" files=".*/test/.*"/>
<suppress checks="JavadocPackage" files=".*/test/.*"/>
<suppress checks="JavadocMethod" files=".*[/\\]test[/\\].*"/>
<suppress checks="JavadocPackage" files=".*[/\\]test[/\\].*"/>
</suppressions>