Skip to content

Commit 3bdae81

Browse files
StypoxAudricV
authored andcommitted
Fix checkstyle
1 parent 6010c4e commit 3bdae81

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ afterEvaluate {
185185
if (!System.properties.containsKey('skipFormatKtlint')) {
186186
preDebugBuild.dependsOn formatKtlint
187187
}
188-
//preDebugBuild.dependsOn runCheckstyle, runKtlint
188+
preDebugBuild.dependsOn runCheckstyle, runKtlint
189189
}
190190

191191
sonar {
@@ -208,7 +208,7 @@ dependencies {
208208
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
209209
// WORKAROUND: if you get errors with the NewPipeExtractor dependency, replace `v0.24.3` with
210210
// the corresponding commit hash, since JitPack is sometimes buggy
211-
implementation 'com.github.FireMasterK:NewPipeExtractor:5528d5c31b400aac8e8930fef16f7b981b5cc0a4'
211+
implementation 'com.github.FireMasterK:NewPipeExtractor:d2cbd09089e8af933738f98b671ad58236a79d6e'
212212
implementation 'com.github.TeamNewPipe:NoNonsense-FilePicker:5.0.0'
213213

214214
/** Checkstyle **/

app/src/main/java/org/schabi/newpipe/util/DeviceUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ public static boolean supportsWebView() {
345345
try {
346346
CookieManager.getInstance();
347347
return true;
348-
} catch (Throwable ignored) {
348+
} catch (final Throwable ignored) {
349349
return false;
350350
}
351351
}

0 commit comments

Comments
 (0)