summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Tadashi G. Takaoka <takaoka@google.com> 2014-08-05 07:42:02 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2014-08-04 23:56:40 +0000
commit0081e911a2aac5f2846e23a3b9572f60c013f17c (patch)
tree44eb0a516a178f9582b09d034eb5ed5ddefa27e2
parenta08c1f6af49a7c553344ad3a3958dd1f7e2bad91 (diff)
parent8c6d477d30e64f3dfae20250b8274ffb37ef7bfa (diff)
Merge "Fix unnecessarily non-static inner class to static inner" into lmp-dev
-rw-r--r--services/core/java/com/android/server/InputMethodManagerService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/InputMethodManagerService.java b/services/core/java/com/android/server/InputMethodManagerService.java
index 74ae81286d11..4687e3fa54fd 100644
--- a/services/core/java/com/android/server/InputMethodManagerService.java
+++ b/services/core/java/com/android/server/InputMethodManagerService.java
@@ -204,7 +204,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
private boolean mNotificationShown;
private final boolean mImeSelectedOnBoot;
- class SessionState {
+ static class SessionState {
final ClientState client;
final IInputMethod method;