mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-27 06:33:39 +01:00
Merge pull request #8073 from Stypox/bump-checkstyle
Update checkstyle to 10.0 and fix various related issues
This commit is contained in:
commit
70d9a77e9b
@ -98,7 +98,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
checkstyleVersion = '9.3'
|
checkstyleVersion = '10.0'
|
||||||
|
|
||||||
androidxLifecycleVersion = '2.3.1'
|
androidxLifecycleVersion = '2.3.1'
|
||||||
androidxRoomVersion = '2.4.2'
|
androidxRoomVersion = '2.4.2'
|
||||||
@ -121,7 +121,7 @@ configurations {
|
|||||||
}
|
}
|
||||||
|
|
||||||
checkstyle {
|
checkstyle {
|
||||||
getConfigDirectory().set(rootProject.file("."))
|
getConfigDirectory().set(rootProject.file("checkstyle"))
|
||||||
ignoreFailures false
|
ignoreFailures false
|
||||||
showViolations true
|
showViolations true
|
||||||
toolVersion = checkstyleVersion
|
toolVersion = checkstyleVersion
|
||||||
|
@ -228,6 +228,7 @@ public class LocalItemListAdapter extends RecyclerView.Adapter<RecyclerView.View
|
|||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("FinalParameters")
|
||||||
@Override
|
@Override
|
||||||
public int getItemViewType(int position) {
|
public int getItemViewType(int position) {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
@ -300,6 +301,7 @@ public class LocalItemListAdapter extends RecyclerView.Adapter<RecyclerView.View
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("FinalParameters")
|
||||||
@Override
|
@Override
|
||||||
public void onBindViewHolder(@NonNull final RecyclerView.ViewHolder holder, int position) {
|
public void onBindViewHolder(@NonNull final RecyclerView.ViewHolder holder, int position) {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
|
@ -682,6 +682,7 @@ public final class Player implements
|
|||||||
//////////////////////////////////////////////////////////////////////////*/
|
//////////////////////////////////////////////////////////////////////////*/
|
||||||
//region Playback initialization via intent
|
//region Playback initialization via intent
|
||||||
|
|
||||||
|
@SuppressWarnings("MethodLength")
|
||||||
public void handleIntent(@NonNull final Intent intent) {
|
public void handleIntent(@NonNull final Intent intent) {
|
||||||
// fail fast if no play queue was provided
|
// fail fast if no play queue was provided
|
||||||
final String queueCache = intent.getStringExtra(PLAY_QUEUE_KEY);
|
final String queueCache = intent.getStringExtra(PLAY_QUEUE_KEY);
|
||||||
|
@ -52,6 +52,7 @@ public class PlayQueueItem implements Serializable {
|
|||||||
item.getUploaderUrl(), item.getStreamType());
|
item.getUploaderUrl(), item.getStreamType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("ParameterNumber")
|
||||||
private PlayQueueItem(@Nullable final String name, @Nullable final String url,
|
private PlayQueueItem(@Nullable final String name, @Nullable final String url,
|
||||||
final int serviceId, final long duration,
|
final int serviceId, final long duration,
|
||||||
@Nullable final String thumbnailUrl, @Nullable final String uploader,
|
@Nullable final String thumbnailUrl, @Nullable final String uploader,
|
||||||
|
@ -142,6 +142,7 @@ public class Mp4FromDashWriter {
|
|||||||
outStream = null;
|
outStream = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("MethodLength")
|
||||||
public void build(final SharpStream output) throws IOException {
|
public void build(final SharpStream output) throws IOException {
|
||||||
if (done) {
|
if (done) {
|
||||||
throw new RuntimeException("already done");
|
throw new RuntimeException("already done");
|
||||||
|
@ -121,6 +121,7 @@ public class WebMWriter implements Closeable {
|
|||||||
clustersOffsetsSizes = null;
|
clustersOffsetsSizes = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("MethodLength")
|
||||||
public void build(final SharpStream out) throws IOException, RuntimeException {
|
public void build(final SharpStream out) throws IOException, RuntimeException {
|
||||||
if (!out.canRewind()) {
|
if (!out.canRewind()) {
|
||||||
throw new IOException("The output stream must be allow seek");
|
throw new IOException("The output stream must be allow seek");
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
<?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="FinalParameters"
|
|
||||||
files="InfoListAdapter.java"
|
|
||||||
lines="253,325"/>
|
|
||||||
|
|
||||||
<suppress checks="EmptyBlock"
|
|
||||||
files="ContentSettingsFragment.java"
|
|
||||||
lines="227,245"/>
|
|
||||||
|
|
||||||
<suppress checks="LineLength"
|
|
||||||
files="WebMWriter.java"
|
|
||||||
lines="156,158"/>
|
|
||||||
|
|
||||||
<suppress checks="FileLength"
|
|
||||||
files="Player.java"/>
|
|
||||||
|
|
||||||
<suppress checks="FileLength"
|
|
||||||
files="VideoDetailFragment.java"/>
|
|
||||||
</suppressions>
|
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
<!-- https://checkstyle.org/config_filters.html#SuppressionFilter -->
|
<!-- https://checkstyle.org/config_filters.html#SuppressionFilter -->
|
||||||
<module name="SuppressionFilter">
|
<module name="SuppressionFilter">
|
||||||
<property name="file" value="${config_loc}/checkstyle-suppressions.xml" />
|
<property name="file" value="${config_loc}/suppressions.xml" />
|
||||||
<property name="optional" value="true"/>
|
<property name="optional" value="true"/>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
@ -180,12 +180,5 @@
|
|||||||
<module name="UpperEll"/>
|
<module name="UpperEll"/>
|
||||||
|
|
||||||
<module name="SuppressWarningsHolder" />
|
<module name="SuppressWarningsHolder" />
|
||||||
|
|
||||||
<!-- https://checkstyle.org/config_filters.html#SuppressionXpathFilter -->
|
|
||||||
<module name="SuppressionXpathFilter">
|
|
||||||
<property name="file" value="${org.checkstyle.sun.suppressionxpathfilter.config}"
|
|
||||||
default="checkstyle-xpath-suppressions.xml" />
|
|
||||||
<property name="optional" value="true"/>
|
|
||||||
</module>
|
|
||||||
</module>
|
</module>
|
||||||
</module>
|
</module>
|
13
checkstyle/suppressions.xml
Normal file
13
checkstyle/suppressions.xml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?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>
|
Loading…
Reference in New Issue
Block a user