mirror of
https://github.com/revanced/jadb.git
synced 2025-05-18 06:57:06 +02:00
Suppress: Method names should comply with a naming convention (squid:S00100)
This commit is contained in:
parent
f40d46917b
commit
aa245626ab
@ -116,15 +116,18 @@ public class PackageManager {
|
|||||||
public static final InstallOption ALLOW_TEST_APK =
|
public static final InstallOption ALLOW_TEST_APK =
|
||||||
new InstallOption("-t");
|
new InstallOption("-t");
|
||||||
|
|
||||||
|
@SuppressWarnings("squid:S00100")
|
||||||
public static InstallOption WITH_INSTALLER_PACKAGE_NAME(String name)
|
public static InstallOption WITH_INSTALLER_PACKAGE_NAME(String name)
|
||||||
{
|
{
|
||||||
return new InstallOption("-t", name);
|
return new InstallOption("-t", name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("squid:S00100")
|
||||||
public static InstallOption ON_SHARED_MASS_STORAGE(String name) {
|
public static InstallOption ON_SHARED_MASS_STORAGE(String name) {
|
||||||
return new InstallOption("-s", name);
|
return new InstallOption("-s", name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("squid:S00100")
|
||||||
public static InstallOption ON_INTERNAL_SYSTEM_MEMORY(String name) {
|
public static InstallOption ON_INTERNAL_SYSTEM_MEMORY(String name) {
|
||||||
return new InstallOption("-f", name);
|
return new InstallOption("-f", name);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user