Apply Spotless formatting to Java and Kotlin files
This commit is contained in:
@@ -4,6 +4,12 @@ import android.os.Bundle;
|
||||
import android.os.IInterface;
|
||||
|
||||
public interface IIntentReceiver extends IInterface {
|
||||
void performReceive(Intent intent, int resultCode, String data, Bundle extras,
|
||||
boolean ordered, boolean sticky, int sendingUser);
|
||||
void performReceive(
|
||||
Intent intent,
|
||||
int resultCode,
|
||||
String data,
|
||||
Bundle extras,
|
||||
boolean ordered,
|
||||
boolean sticky,
|
||||
int sendingUser);
|
||||
}
|
||||
|
||||
@@ -7,17 +7,23 @@ import android.os.IInterface;
|
||||
|
||||
public interface IIntentSender extends IInterface {
|
||||
|
||||
void send(int code, Intent intent, String resolvedType, IBinder whitelistToken,
|
||||
IIntentReceiver finishedReceiver, String requiredPermission, Bundle options);
|
||||
void send(
|
||||
int code,
|
||||
Intent intent,
|
||||
String resolvedType,
|
||||
IBinder whitelistToken,
|
||||
IIntentReceiver finishedReceiver,
|
||||
String requiredPermission,
|
||||
Bundle options);
|
||||
|
||||
abstract class Stub extends Binder implements IIntentSender {
|
||||
public static IIntentSender asInterface(IBinder binder) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public IBinder asBinder() {
|
||||
return this;
|
||||
}
|
||||
abstract class Stub extends Binder implements IIntentSender {
|
||||
public static IIntentSender asInterface(IBinder binder) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public IBinder asBinder() {
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,15 +7,20 @@ import android.os.RemoteException;
|
||||
|
||||
public interface IPackageInstaller extends IInterface {
|
||||
|
||||
int createSession(PackageInstaller.SessionParams params, String installerPackageName, String installerAttributionTag, int userId) throws RemoteException;
|
||||
int createSession(
|
||||
PackageInstaller.SessionParams params,
|
||||
String installerPackageName,
|
||||
String installerAttributionTag,
|
||||
int userId)
|
||||
throws RemoteException;
|
||||
|
||||
IPackageInstallerSession openSession(int sessionId) throws RemoteException;
|
||||
IPackageInstallerSession openSession(int sessionId) throws RemoteException;
|
||||
|
||||
void abandonSession(int sessionId) throws RemoteException;
|
||||
void abandonSession(int sessionId) throws RemoteException;
|
||||
|
||||
abstract class Stub extends Binder implements IPackageInstaller {
|
||||
public static IPackageInstaller asInterface(IBinder binder) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
abstract class Stub extends Binder implements IPackageInstaller {
|
||||
public static IPackageInstaller asInterface(IBinder binder) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@ import android.os.IInterface;
|
||||
|
||||
public interface IPackageInstallerSession extends IInterface {
|
||||
|
||||
abstract class Stub extends Binder implements IPackageInstallerSession {
|
||||
public static IPackageInstallerSession asInterface(IBinder binder) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
abstract class Stub extends Binder implements IPackageInstallerSession {
|
||||
public static IPackageInstallerSession asInterface(IBinder binder) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user