[IL119] Make fields private.
Change-Id: Ia84d3e5a102e1056e3d7467be07df89390f17617main
parent
0e489d1ba3
commit
fb28935f82
|
@ -74,7 +74,7 @@ public final class InputLogic {
|
||||||
|
|
||||||
// TODO : make all these fields private as soon as possible.
|
// TODO : make all these fields private as soon as possible.
|
||||||
// Current space state of the input method. This can be any of the above constants.
|
// Current space state of the input method. This can be any of the above constants.
|
||||||
public int mSpaceState;
|
private int mSpaceState;
|
||||||
// Never null
|
// Never null
|
||||||
public SuggestedWords mSuggestedWords = SuggestedWords.EMPTY;
|
public SuggestedWords mSuggestedWords = SuggestedWords.EMPTY;
|
||||||
// TODO: mSuggest should be touched by a single thread.
|
// TODO: mSuggest should be touched by a single thread.
|
||||||
|
@ -85,7 +85,7 @@ public final class InputLogic {
|
||||||
public LastComposedWord mLastComposedWord = LastComposedWord.NOT_A_COMPOSED_WORD;
|
public LastComposedWord mLastComposedWord = LastComposedWord.NOT_A_COMPOSED_WORD;
|
||||||
public final WordComposer mWordComposer;
|
public final WordComposer mWordComposer;
|
||||||
public final RichInputConnection mConnection;
|
public final RichInputConnection mConnection;
|
||||||
public final RecapitalizeStatus mRecapitalizeStatus = new RecapitalizeStatus();
|
private final RecapitalizeStatus mRecapitalizeStatus = new RecapitalizeStatus();
|
||||||
|
|
||||||
private int mDeleteCount;
|
private int mDeleteCount;
|
||||||
private long mLastKeyTime;
|
private long mLastKeyTime;
|
||||||
|
@ -96,7 +96,7 @@ public final class InputLogic {
|
||||||
|
|
||||||
// TODO: This boolean is persistent state and causes large side effects at unexpected times.
|
// TODO: This boolean is persistent state and causes large side effects at unexpected times.
|
||||||
// Find a way to remove it for readability.
|
// Find a way to remove it for readability.
|
||||||
public boolean mIsAutoCorrectionIndicatorOn;
|
private boolean mIsAutoCorrectionIndicatorOn;
|
||||||
|
|
||||||
public InputLogic(final LatinIME latinIME,
|
public InputLogic(final LatinIME latinIME,
|
||||||
final SuggestionStripViewAccessor suggestionStripViewAccessor) {
|
final SuggestionStripViewAccessor suggestionStripViewAccessor) {
|
||||||
|
|
Loading…
Reference in New Issue