Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48019c65 authored by satok's avatar satok Committed by Android Git Automerger
Browse files

am 2cf1cf09: Fix possible NPE

* commit '2cf1cf09':
  Fix possible NPE
parents 79174b75 2cf1cf09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -701,7 +701,7 @@ public class TextServicesManagerService extends ITextServicesManager.Stub {
        public void onServiceDisconnected(ComponentName name) {
            synchronized(mSpellCheckerMap) {
                final SpellCheckerBindGroup group = mSpellCheckerBindGroups.get(mSciId);
                if (this == group.mInternalConnection) {
                if (group != null && this == group.mInternalConnection) {
                    mSpellCheckerBindGroups.remove(mSciId);
                }
            }