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
9 changed files with 22 additions and 37 deletions
|
|
@ -228,6 +228,7 @@ public class LocalItemListAdapter extends RecyclerView.Adapter<RecyclerView.View
|
|||
return count;
|
||||
}
|
||||
|
||||
@SuppressWarnings("FinalParameters")
|
||||
@Override
|
||||
public int getItemViewType(int position) {
|
||||
if (DEBUG) {
|
||||
|
|
@ -300,6 +301,7 @@ public class LocalItemListAdapter extends RecyclerView.Adapter<RecyclerView.View
|
|||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("FinalParameters")
|
||||
@Override
|
||||
public void onBindViewHolder(@NonNull final RecyclerView.ViewHolder holder, int position) {
|
||||
if (DEBUG) {
|
||||
|
|
|
|||
|
|
@ -682,6 +682,7 @@ public final class Player implements
|
|||
//////////////////////////////////////////////////////////////////////////*/
|
||||
//region Playback initialization via intent
|
||||
|
||||
@SuppressWarnings("MethodLength")
|
||||
public void handleIntent(@NonNull final Intent intent) {
|
||||
// fail fast if no play queue was provided
|
||||
final String queueCache = intent.getStringExtra(PLAY_QUEUE_KEY);
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ public class PlayQueueItem implements Serializable {
|
|||
item.getUploaderUrl(), item.getStreamType());
|
||||
}
|
||||
|
||||
@SuppressWarnings("ParameterNumber")
|
||||
private PlayQueueItem(@Nullable final String name, @Nullable final String url,
|
||||
final int serviceId, final long duration,
|
||||
@Nullable final String thumbnailUrl, @Nullable final String uploader,
|
||||
|
|
|
|||
|
|
@ -142,6 +142,7 @@ public class Mp4FromDashWriter {
|
|||
outStream = null;
|
||||
}
|
||||
|
||||
@SuppressWarnings("MethodLength")
|
||||
public void build(final SharpStream output) throws IOException {
|
||||
if (done) {
|
||||
throw new RuntimeException("already done");
|
||||
|
|
|
|||
|
|
@ -121,6 +121,7 @@ public class WebMWriter implements Closeable {
|
|||
clustersOffsetsSizes = null;
|
||||
}
|
||||
|
||||
@SuppressWarnings("MethodLength")
|
||||
public void build(final SharpStream out) throws IOException, RuntimeException {
|
||||
if (!out.canRewind()) {
|
||||
throw new IOException("The output stream must be allow seek");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue