Skip to content

Commit 117999d

Browse files
committed
Make the spell checker session static
Change-Id: I66d51f33e005f46465232d3fc460cda0609609ea
1 parent a2f69c9 commit 117999d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/current.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18463,7 +18463,7 @@ package android.service.textservice {
1846318463
field public static final java.lang.String SERVICE_INTERFACE = "android.service.textservice.SpellCheckerService";
1846418464
}
1846518465

18466-
public abstract class SpellCheckerService.Session {
18466+
public static abstract class SpellCheckerService.Session {
1846718467
ctor public SpellCheckerService.Session();
1846818468
method public android.os.Bundle getBundle();
1846918469
method public java.lang.String getLocale();

core/java/android/service/textservice/SpellCheckerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public final IBinder onBind(final Intent intent) {
6666
/**
6767
* This abstract class should be overridden by a concrete implementation of a spell checker.
6868
*/
69-
public abstract class Session {
69+
public static abstract class Session {
7070
private InternalISpellCheckerSession mInternalSession;
7171

7272
/**

0 commit comments

Comments
 (0)