codacy: Method names should not start with capital letters

This commit is contained in:
AndyScherzinger 2018-02-21 22:55:05 +01:00
parent 45a145ac50
commit ab65fe3ecc
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ import com.nextcloud.talk.interfaces.ClosedInterface;
public class ClosedInterfaceImpl implements ClosedInterface, ProviderInstallListener { public class ClosedInterfaceImpl implements ClosedInterface, ProviderInstallListener {
@Override @Override
public void ProviderInstallerInstallIfNeededAsync() { public void providerInstallerInstallIfNeededAsync() {
ProviderInstaller.installIfNeededAsync(NextcloudTalkApplication.getSharedApplication().getApplicationContext(), ProviderInstaller.installIfNeededAsync(NextcloudTalkApplication.getSharedApplication().getApplicationContext(),
this); this);
} }

View File

@ -131,7 +131,7 @@ public class NextcloudTalkApplication extends MultiDexApplication {
componentApplication.inject(this); componentApplication.inject(this);
refWatcher = LeakCanary.install(this); refWatcher = LeakCanary.install(this);
new ClosedInterfaceImpl().ProviderInstallerInstallIfNeededAsync(); new ClosedInterfaceImpl().providerInstallerInstallIfNeededAsync();
DeviceUtils.ignoreSpecialBatteryFeatures(); DeviceUtils.ignoreSpecialBatteryFeatures();
new JobRequest.Builder(PushRegistrationJob.TAG).setUpdateCurrent(true).startNow().build().schedule(); new JobRequest.Builder(PushRegistrationJob.TAG).setUpdateCurrent(true).startNow().build().schedule();

View File

@ -21,5 +21,5 @@
package com.nextcloud.talk.interfaces; package com.nextcloud.talk.interfaces;
public interface ClosedInterface { public interface ClosedInterface {
void ProviderInstallerInstallIfNeededAsync(); void providerInstallerInstallIfNeededAsync();
} }