mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-22 14:24:27 +01:00
Merge pull request #3547 from ByteHamster/checkstyle-change
Checkstyle change
This commit is contained in:
commit
bc5f36336e
@ -331,7 +331,7 @@ public class QueueFragment extends Fragment {
|
|||||||
conDialog.createNewDialog().show();
|
conDialog.createNewDialog().show();
|
||||||
return true;
|
return true;
|
||||||
case R.id.episode_actions:
|
case R.id.episode_actions:
|
||||||
((MainActivity) requireActivity()) .loadChildFragment(
|
((MainActivity) requireActivity()).loadChildFragment(
|
||||||
EpisodesApplyActionFragment.newInstance(queue, ACTION_DELETE | ACTION_REMOVE_FROM_QUEUE));
|
EpisodesApplyActionFragment.newInstance(queue, ACTION_DELETE | ACTION_REMOVE_FROM_QUEUE));
|
||||||
return true;
|
return true;
|
||||||
case R.id.queue_sort_episode_title_asc:
|
case R.id.queue_sort_episode_title_asc:
|
||||||
|
@ -134,7 +134,8 @@ public class NetworkPreferencesFragment extends PreferenceFragmentCompat {
|
|||||||
builder1.show();
|
builder1.show();
|
||||||
});
|
});
|
||||||
builder.onNegative((dialog, which) -> {
|
builder.onNegative((dialog, which) -> {
|
||||||
int hourOfDay = 7, minute = 0;
|
int hourOfDay = 7;
|
||||||
|
int minute = 0;
|
||||||
int[] updateTime = UserPreferences.getUpdateTimeOfDay();
|
int[] updateTime = UserPreferences.getUpdateTimeOfDay();
|
||||||
if (updateTime.length == 2) {
|
if (updateTime.length == 2) {
|
||||||
hourOfDay = updateTime[0];
|
hourOfDay = updateTime[0];
|
||||||
|
@ -91,4 +91,5 @@ task checkstyle(type: Checkstyle) {
|
|||||||
classpath = files()
|
classpath = files()
|
||||||
source "${project.rootDir}"
|
source "${project.rootDir}"
|
||||||
exclude("**/gen/**")
|
exclude("**/gen/**")
|
||||||
|
exclude("**/generated/**")
|
||||||
}
|
}
|
||||||
|
@ -187,11 +187,6 @@
|
|||||||
</module>
|
</module>
|
||||||
<module name="OverloadMethodsDeclarationOrder"/>
|
<module name="OverloadMethodsDeclarationOrder"/>
|
||||||
<module name="VariableDeclarationUsageDistance"/>
|
<module name="VariableDeclarationUsageDistance"/>
|
||||||
<module name="CustomImportOrder">
|
|
||||||
<property name="sortImportsInGroupAlphabetically" value="true"/>
|
|
||||||
<property name="separateLineBetweenGroups" value="true"/>
|
|
||||||
<property name="customImportOrderRules" value="STATIC###THIRD_PARTY_PACKAGE"/>
|
|
||||||
</module>
|
|
||||||
<module name="MethodParamPad"/>
|
<module name="MethodParamPad"/>
|
||||||
<module name="NoWhitespaceBefore">
|
<module name="NoWhitespaceBefore">
|
||||||
<property name="tokens"
|
<property name="tokens"
|
||||||
|
@ -11,6 +11,13 @@
|
|||||||
|
|
||||||
<module name="TreeWalker">
|
<module name="TreeWalker">
|
||||||
<module name="OuterTypeFilename"/>
|
<module name="OuterTypeFilename"/>
|
||||||
|
<module name="IllegalTokenText">
|
||||||
|
<property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/>
|
||||||
|
<property name="format"
|
||||||
|
value="\\u00(09|0(a|A)|0(c|C)|0(d|D)|22|27|5(C|c))|\\(0(10|11|12|14|15|42|47)|134)"/>
|
||||||
|
<property name="message"
|
||||||
|
value="Consider using special escape sequence instead of octal value or Unicode escaped value."/>
|
||||||
|
</module>
|
||||||
<module name="AvoidEscapedUnicodeCharacters">
|
<module name="AvoidEscapedUnicodeCharacters">
|
||||||
<property name="allowEscapesForControlCharacters" value="true"/>
|
<property name="allowEscapesForControlCharacters" value="true"/>
|
||||||
<property name="allowByTailComment" value="true"/>
|
<property name="allowByTailComment" value="true"/>
|
||||||
@ -25,6 +32,7 @@
|
|||||||
value="LITERAL_TRY, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"/>
|
value="LITERAL_TRY, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"/>
|
||||||
</module>
|
</module>
|
||||||
<module name="OneStatementPerLine"/>
|
<module name="OneStatementPerLine"/>
|
||||||
|
<module name="MultipleVariableDeclarations"/>
|
||||||
<module name="FallThrough"/>
|
<module name="FallThrough"/>
|
||||||
<module name="UpperEll"/>
|
<module name="UpperEll"/>
|
||||||
<module name="ModifierOrder"/>
|
<module name="ModifierOrder"/>
|
||||||
@ -68,6 +76,11 @@
|
|||||||
<message key="ws.notPreceded"
|
<message key="ws.notPreceded"
|
||||||
value="GenericWhitespace ''{0}'' is not preceded with whitespace."/>
|
value="GenericWhitespace ''{0}'' is not preceded with whitespace."/>
|
||||||
</module>
|
</module>
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<property name="tokens"
|
||||||
|
value="COMMA, SEMI, POST_INC, POST_DEC, DOT, ELLIPSIS, METHOD_REF"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
</module>
|
||||||
<module name="AnnotationLocation">
|
<module name="AnnotationLocation">
|
||||||
<property name="id" value="AnnotationLocationMostCases"/>
|
<property name="id" value="AnnotationLocationMostCases"/>
|
||||||
<property name="tokens"
|
<property name="tokens"
|
||||||
|
@ -30,7 +30,8 @@ public class DownloaderUpdate {
|
|||||||
|
|
||||||
DownloaderUpdate(@NonNull List<Downloader> downloaders) {
|
DownloaderUpdate(@NonNull List<Downloader> downloaders) {
|
||||||
this.downloaders = downloaders;
|
this.downloaders = downloaders;
|
||||||
LongList feedIds1 = new LongList(), mediaIds1 = new LongList();
|
LongList feedIds1 = new LongList();
|
||||||
|
LongList mediaIds1 = new LongList();
|
||||||
for(Downloader d1 : downloaders) {
|
for(Downloader d1 : downloaders) {
|
||||||
int type = d1.getDownloadRequest().getFeedfileType();
|
int type = d1.getDownloadRequest().getFeedfileType();
|
||||||
long id = d1.getDownloadRequest().getFeedfileId();
|
long id = d1.getDownloadRequest().getFeedfileId();
|
||||||
|
@ -83,7 +83,16 @@ public class FastBlurTransformation extends BitmapTransformation {
|
|||||||
int r[] = new int[wh];
|
int r[] = new int[wh];
|
||||||
int g[] = new int[wh];
|
int g[] = new int[wh];
|
||||||
int b[] = 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 vmin[] = new int[Math.max(w, h)];
|
||||||
|
|
||||||
int divsum = (div + 1) >> 1;
|
int divsum = (div + 1) >> 1;
|
||||||
@ -101,8 +110,12 @@ public class FastBlurTransformation extends BitmapTransformation {
|
|||||||
int[] sir;
|
int[] sir;
|
||||||
int rbs;
|
int rbs;
|
||||||
int r1 = radius + 1;
|
int r1 = radius + 1;
|
||||||
int routsum, goutsum, boutsum;
|
int routsum;
|
||||||
int rinsum, ginsum, binsum;
|
int goutsum;
|
||||||
|
int boutsum;
|
||||||
|
int rinsum;
|
||||||
|
int ginsum;
|
||||||
|
int binsum;
|
||||||
|
|
||||||
for (y = 0; y < h; y++) {
|
for (y = 0; y < h; y++) {
|
||||||
rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0;
|
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)
|
private int readUnicodeString(StringBuilder strBuffer, InputStream input, int max, Charset charset)
|
||||||
throws IOException, ID3ReaderException {
|
throws IOException, ID3ReaderException {
|
||||||
byte[] buffer = new byte[max];
|
byte[] buffer = new byte[max];
|
||||||
int c, cZero = -1;
|
int c;
|
||||||
|
int cZero = -1;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (; i < max; i++) {
|
for (; i < max; i++) {
|
||||||
c = input.read();
|
c = input.read();
|
||||||
|
Loading…
Reference in New Issue
Block a user