From 5773bc8e247d733419c8a03b59bde6611b6f2cb9 Mon Sep 17 00:00:00 2001 From: Neil Fuller Date: Tue, 8 Sep 2020 11:29:23 +0100 Subject: [PATCH] Small fix to logged output Add a space to a logged string. Test: Build only Change-Id: Ib5e005141af2eea7bcac7a8d8d6a93020bfdd4ca --- services/core/java/com/android/server/appop/AppOpsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/appop/AppOpsService.java b/services/core/java/com/android/server/appop/AppOpsService.java index dfe8af155a046..ab36aec877146 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,