From 3e3a6430ea49abcdcc645a26a6f1df65acd97345 Mon Sep 17 00:00:00 2001 From: San Mehat Date: Fri, 22 Jan 2010 16:46:23 -0800 Subject: [PATCH] Fix whitespace issue causing protocol syntax error Signed-off-by: San Mehat --- services/java/com/android/server/MountService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/java/com/android/server/MountService.java b/services/java/com/android/server/MountService.java index 381a300493f7e..0cee31df59fd4 100644 --- a/services/java/com/android/server/MountService.java +++ b/services/java/com/android/server/MountService.java @@ -1052,7 +1052,7 @@ class MountService extends IMountService.Stub } public void unmountSecureContainer(String id) throws IllegalStateException { - String cmd = String.format("unmount_asec %s ", id); + String cmd = String.format("unmount_asec %s", id); mConnector.doCommand(cmd); }