Merge "Add final and volatile for members of InputLogic."

main
Keisuke Kuroyanagi 2014-02-20 10:12:44 +00:00 committed by Android (Google) Code Review
commit 485c1ec685
1 changed files with 3 additions and 2 deletions

View File

@ -77,9 +77,10 @@ public final class InputLogic {
public int mSpaceState;
// Never null
public SuggestedWords mSuggestedWords = SuggestedWords.EMPTY;
public Suggest mSuggest;
// TODO: mSuggest should be touched by a single thread.
public volatile Suggest mSuggest;
// The event interpreter should never be null.
public EventInterpreter mEventInterpreter;
public final EventInterpreter mEventInterpreter;
public LastComposedWord mLastComposedWord = LastComposedWord.NOT_A_COMPOSED_WORD;
public final WordComposer mWordComposer;