fix checkstyle LineLength
This commit is contained in:
parent
c758cb60d9
commit
d549fb905d
@ -89,8 +89,7 @@ public class InstalledAppProviderService extends JobIntentService {
|
|||||||
.subscribeOn(Schedulers.newThread())
|
.subscribeOn(Schedulers.newThread())
|
||||||
.debounce(3, TimeUnit.SECONDS)
|
.debounce(3, TimeUnit.SECONDS)
|
||||||
.subscribe(packageName -> {
|
.subscribe(packageName -> {
|
||||||
Utils.debugLog(TAG, "Notifying content providers (so they can update" +
|
Utils.debugLog(TAG, "Notifying content providers to update relevant views.");
|
||||||
" the relevant views).");
|
|
||||||
getContentResolver().notifyChange(AppProvider.getContentUri(), null);
|
getContentResolver().notifyChange(AppProvider.getContentUri(), null);
|
||||||
getContentResolver().notifyChange(ApkProvider.getContentUri(), null);
|
getContentResolver().notifyChange(ApkProvider.getContentUri(), null);
|
||||||
})
|
})
|
||||||
|
@ -648,8 +648,8 @@ public class ManageReposActivity extends AppCompatActivity
|
|||||||
})
|
})
|
||||||
.subscribeOn(Schedulers.io())
|
.subscribeOn(Schedulers.io())
|
||||||
.observeOn(AndroidSchedulers.mainThread())
|
.observeOn(AndroidSchedulers.mainThread())
|
||||||
.doOnDispose(() -> Utils.debugLog(TAG, "Not checking more repo addresses," +
|
.doOnDispose(() -> Utils.debugLog(TAG,
|
||||||
" because process was skipped."))
|
"Not checking more repo addresses, because process was skipped."))
|
||||||
.subscribe(codeAddressPair -> {
|
.subscribe(codeAddressPair -> {
|
||||||
final int statusCode = codeAddressPair.first;
|
final int statusCode = codeAddressPair.first;
|
||||||
final String newAddress = codeAddressPair.second;
|
final String newAddress = codeAddressPair.second;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user