mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-21 18:42:35 +01:00
710964b47d
- Put checkstyle files into checkstyle/ subfolder so that the gradle task does not implicitly depend on the whole project, fixing many warnings during build and possibly increasing build performance. - Remove unused SuppressionXpathFilter from config file. - Remove outdated suppressions from suppressions file.
20 lines
524 B
XML
20 lines
524 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>
|
|
<suppress checks="FinalParameters"
|
|
files="LocalItemListAdapter.java"
|
|
lines="232,304"/>
|
|
|
|
<suppress checks="EmptyBlock"
|
|
files="ContentSettingsFragment.java"
|
|
lines="227,245"/>
|
|
|
|
<suppress checks="FileLength"
|
|
files="Player.java"/>
|
|
|
|
<suppress checks="FileLength"
|
|
files="VideoDetailFragment.java"/>
|
|
</suppressions>
|