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

Commit 117999d1 authored by satok's avatar satok
Browse files

Make the spell checker session static

Change-Id: I66d51f33e005f46465232d3fc460cda0609609ea
parent a2f69c91
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -18463,7 +18463,7 @@ package android.service.textservice {
    field public static final java.lang.String SERVICE_INTERFACE = "android.service.textservice.SpellCheckerService";
    field public static final java.lang.String SERVICE_INTERFACE = "android.service.textservice.SpellCheckerService";
  }
  }
  public abstract class SpellCheckerService.Session {
  public static abstract class SpellCheckerService.Session {
    ctor public SpellCheckerService.Session();
    ctor public SpellCheckerService.Session();
    method public android.os.Bundle getBundle();
    method public android.os.Bundle getBundle();
    method public java.lang.String getLocale();
    method public java.lang.String getLocale();
+1 −1
Original line number Original line Diff line number Diff line
@@ -66,7 +66,7 @@ public abstract class SpellCheckerService extends Service {
    /**
    /**
     * This abstract class should be overridden by a concrete implementation of a spell checker.
     * This abstract class should be overridden by a concrete implementation of a spell checker.
     */
     */
    public abstract class Session {
    public static abstract class Session {
        private InternalISpellCheckerSession mInternalSession;
        private InternalISpellCheckerSession mInternalSession;


        /**
        /**