Make the spell checker session static

Change-Id: I66d51f33e005f46465232d3fc460cda0609609ea
This commit is contained in:
satok
2011-09-02 17:55:43 +09:00
parent a2f69c914d
commit 117999d1f4
2 changed files with 2 additions and 2 deletions

View File

@@ -18463,7 +18463,7 @@ package android.service.textservice {
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();
method public android.os.Bundle getBundle();
method public java.lang.String getLocale();

View File

@@ -66,7 +66,7 @@ public abstract class SpellCheckerService extends Service {
/**
* 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;
/**