1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-14 17:29:58 +00:00
NewPipe/checkstyle/suppressions.xml
Stypox 53f8415e9b
Use @SuppressWarnings for checkstyle suppressions & warnings
It's better to use @SuppressWarnings instead of the suppressions file, so that the warning suppression is at the place where it acts.
2022-03-18 23:57:11 +01:00

14 lines
422 B
XML

<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<!-- Use @SuppressWarnings("...") if it is possible, only use this file if it is not -->
<suppress checks="FileLength"
files="Player.java"/>
<suppress checks="FileLength"
files="VideoDetailFragment.java"/>
</suppressions>