fix checkstyle LineLength

This commit is contained in:
Isira Seneviratne 2020-10-24 11:19:54 +05:30 committed by Hans-Christoph Steiner
parent c758cb60d9
commit d549fb905d
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA
2 changed files with 3 additions and 4 deletions

View File

@ -89,8 +89,7 @@ public class InstalledAppProviderService extends JobIntentService {
.subscribeOn(Schedulers.newThread())
.debounce(3, TimeUnit.SECONDS)
.subscribe(packageName -> {
Utils.debugLog(TAG, "Notifying content providers (so they can update" +
" the relevant views).");
Utils.debugLog(TAG, "Notifying content providers to update relevant views.");
getContentResolver().notifyChange(AppProvider.getContentUri(), null);
getContentResolver().notifyChange(ApkProvider.getContentUri(), null);
})

View File

@ -648,8 +648,8 @@ public class ManageReposActivity extends AppCompatActivity
})
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.doOnDispose(() -> Utils.debugLog(TAG, "Not checking more repo addresses," +
" because process was skipped."))
.doOnDispose(() -> Utils.debugLog(TAG,
"Not checking more repo addresses, because process was skipped."))
.subscribe(codeAddressPair -> {
final int statusCode = codeAddressPair.first;
final String newAddress = codeAddressPair.second;