Skip to content

Commit

Permalink
Merge pull request #272 from shaybarak/patch-1
Browse files Browse the repository at this point in the history
Fix SDK_INT range expression
  • Loading branch information
pyricau committed Jan 4, 2016
2 parents 60d7dd9 + 1b8c8b3 commit 66bcd40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public enum AndroidExcludedRefs {
}
},

SPELL_CHECKER_SESSION(SDK_INT >= JELLY_BEAN || SDK_INT <= LOLLIPOP_MR1) {
SPELL_CHECKER_SESSION(SDK_INT >= JELLY_BEAN && SDK_INT <= LOLLIPOP_MR1) {
@Override void add(ExcludedRefs.Builder excluded) {
// SpellCheckerSessionListenerImpl.mHandler is leaking destroyed Activity when the
// SpellCheckerSession is closed before the service is connected.
Expand Down

0 comments on commit 66bcd40

Please sign in to comment.