Enforce MultipleVariableDeclarations checkstyle
This commit is contained in:
parent
6a4754922a
commit
cc52fa04fa
|
@ -134,7 +134,8 @@ public class NetworkPreferencesFragment extends PreferenceFragmentCompat {
|
|||
builder1.show();
|
||||
});
|
||||
builder.onNegative((dialog, which) -> {
|
||||
int hourOfDay = 7, minute = 0;
|
||||
int hourOfDay = 7;
|
||||
int minute = 0;
|
||||
int[] updateTime = UserPreferences.getUpdateTimeOfDay();
|
||||
if (updateTime.length == 2) {
|
||||
hourOfDay = updateTime[0];
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
value="LITERAL_TRY, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"/>
|
||||
</module>
|
||||
<module name="OneStatementPerLine"/>
|
||||
<module name="MultipleVariableDeclarations"/>
|
||||
<module name="FallThrough"/>
|
||||
<module name="UpperEll"/>
|
||||
<module name="ModifierOrder"/>
|
||||
|
|
|
@ -30,7 +30,8 @@ public class DownloaderUpdate {
|
|||
|
||||
DownloaderUpdate(@NonNull List<Downloader> downloaders) {
|
||||
this.downloaders = downloaders;
|
||||
LongList feedIds1 = new LongList(), mediaIds1 = new LongList();
|
||||
LongList feedIds1 = new LongList();
|
||||
LongList mediaIds1 = new LongList();
|
||||
for(Downloader d1 : downloaders) {
|
||||
int type = d1.getDownloadRequest().getFeedfileType();
|
||||
long id = d1.getDownloadRequest().getFeedfileId();
|
||||
|
|
|
@ -83,7 +83,16 @@ public class FastBlurTransformation extends BitmapTransformation {
|
|||
int r[] = new int[wh];
|
||||
int g[] = new int[wh];
|
||||
int b[] = new int[wh];
|
||||
int rsum, gsum, bsum, x, y, i, p, yp, yi, yw;
|
||||
int rsum;
|
||||
int gsum;
|
||||
int bsum;
|
||||
int x;
|
||||
int y;
|
||||
int i;
|
||||
int p;
|
||||
int yp;
|
||||
int yi;
|
||||
int yw;
|
||||
int vmin[] = new int[Math.max(w, h)];
|
||||
|
||||
int divsum = (div + 1) >> 1;
|
||||
|
@ -101,8 +110,12 @@ public class FastBlurTransformation extends BitmapTransformation {
|
|||
int[] sir;
|
||||
int rbs;
|
||||
int r1 = radius + 1;
|
||||
int routsum, goutsum, boutsum;
|
||||
int rinsum, ginsum, binsum;
|
||||
int routsum;
|
||||
int goutsum;
|
||||
int boutsum;
|
||||
int rinsum;
|
||||
int ginsum;
|
||||
int binsum;
|
||||
|
||||
for (y = 0; y < h; y++) {
|
||||
rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0;
|
||||
|
|
|
@ -206,7 +206,8 @@ public class ID3Reader {
|
|||
private int readUnicodeString(StringBuilder strBuffer, InputStream input, int max, Charset charset)
|
||||
throws IOException, ID3ReaderException {
|
||||
byte[] buffer = new byte[max];
|
||||
int c, cZero = -1;
|
||||
int c;
|
||||
int cZero = -1;
|
||||
int i = 0;
|
||||
for (; i < max; i++) {
|
||||
c = input.read();
|
||||
|
|
Loading…
Reference in New Issue