Merge "Change log tag of DynamicSystemClient to match class name" am: 916dfddfd0 am: 198e4b4c4b

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1537885

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I36612768f8f876e93c624ed59d7c92bed7ae8b2d
This commit is contained in:
Treehugger Robot
2021-01-06 11:24:01 +00:00
committed by Automerger Merge Worker
2 changed files with 5 additions and 5 deletions

View File

@@ -68,6 +68,8 @@ import java.util.concurrent.Executor;
*/
@SystemApi
public class DynamicSystemClient {
private static final String TAG = "DynamicSystemClient";
/** @hide */
@IntDef(prefix = { "STATUS_" }, value = {
STATUS_UNKNOWN,
@@ -92,8 +94,6 @@ public class DynamicSystemClient {
@Retention(RetentionPolicy.SOURCE)
public @interface StatusChangedCause {}
private static final String TAG = "DynSystemClient";
/** Listener for installation status updates. */
public interface OnStatusChangedListener {
/**
@@ -240,7 +240,7 @@ public class DynamicSystemClient {
private class DynSystemServiceConnection implements ServiceConnection {
public void onServiceConnected(ComponentName className, IBinder service) {
Slog.v(TAG, "DynSystemService connected");
Slog.v(TAG, "onServiceConnected: " + className);
mService = new Messenger(service);
@@ -262,7 +262,7 @@ public class DynamicSystemClient {
}
public void onServiceDisconnected(ComponentName className) {
Slog.v(TAG, "DynSystemService disconnected");
Slog.v(TAG, "onServiceDisconnected: " + className);
mService = null;
}
}

View File

@@ -74,7 +74,7 @@ import java.util.ArrayList;
public class DynamicSystemInstallationService extends Service
implements InstallationAsyncTask.ProgressListener {
private static final String TAG = "DynSystemInstallationService";
private static final String TAG = "DynamicSystemInstallationService";
// TODO (b/131866826): This is currently for test only. Will move this to System API.
static final String KEY_ENABLE_WHEN_COMPLETED = "KEY_ENABLE_WHEN_COMPLETED";