mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-24 06:00:49 +01:00
codacy: Method names should not start with capital letters
This commit is contained in:
parent
45a145ac50
commit
ab65fe3ecc
@ -30,7 +30,7 @@ import com.nextcloud.talk.interfaces.ClosedInterface;
|
||||
|
||||
public class ClosedInterfaceImpl implements ClosedInterface, ProviderInstallListener {
|
||||
@Override
|
||||
public void ProviderInstallerInstallIfNeededAsync() {
|
||||
public void providerInstallerInstallIfNeededAsync() {
|
||||
ProviderInstaller.installIfNeededAsync(NextcloudTalkApplication.getSharedApplication().getApplicationContext(),
|
||||
this);
|
||||
}
|
||||
|
@ -131,7 +131,7 @@ public class NextcloudTalkApplication extends MultiDexApplication {
|
||||
componentApplication.inject(this);
|
||||
refWatcher = LeakCanary.install(this);
|
||||
|
||||
new ClosedInterfaceImpl().ProviderInstallerInstallIfNeededAsync();
|
||||
new ClosedInterfaceImpl().providerInstallerInstallIfNeededAsync();
|
||||
DeviceUtils.ignoreSpecialBatteryFeatures();
|
||||
|
||||
new JobRequest.Builder(PushRegistrationJob.TAG).setUpdateCurrent(true).startNow().build().schedule();
|
||||
|
@ -21,5 +21,5 @@
|
||||
package com.nextcloud.talk.interfaces;
|
||||
|
||||
public interface ClosedInterface {
|
||||
void ProviderInstallerInstallIfNeededAsync();
|
||||
void providerInstallerInstallIfNeededAsync();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user