diff options
| author | 2020-09-08 11:29:23 +0100 | |
|---|---|---|
| committer | 2020-09-08 11:29:23 +0100 | |
| commit | 5773bc8e247d733419c8a03b59bde6611b6f2cb9 (patch) | |
| tree | f08adcc54e95f3b5b968efb757cad5b5f919821b | |
| parent | 60c547b47397f19257297bdcbc6468a529fc9649 (diff) | |
Small fix to logged output
Add a space to a logged string.
Test: Build only
Change-Id: Ib5e005141af2eea7bcac7a8d8d6a93020bfdd4ca
| -rw-r--r-- | services/core/java/com/android/server/appop/AppOpsService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/appop/AppOpsService.java b/services/core/java/com/android/server/appop/AppOpsService.java index dfe8af155a04..ab36aec87714 100644 --- a/services/core/java/com/android/server/appop/AppOpsService.java +++ b/services/core/java/com/android/server/appop/AppOpsService.java @@ -3926,7 +3926,7 @@ public class AppOpsService extends IAppOpsService.Stub { if (!isAttributionTagValid) { String msg = "attributionTag " + attributionTag + " not declared in" - + "manifest of " + packageName; + + " manifest of " + packageName; try { if (mPlatformCompat.isChangeEnabledByPackageName( SECURITY_EXCEPTION_ON_INVALID_ATTRIBUTION_TAG_CHANGE, packageName, |