Skip to content
Snippets Groups Projects
Commit f76430dd authored by Martin Paraskevov's avatar Martin Paraskevov Committed by Android Git Automerger
Browse files

am 54e891e2: Merge "Fix bug in regular expression stripping quotes."

* commit '54e891e2':
  Fix bug in regular expression stripping quotes.
parents 71f0e43b 54e891e2
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ public abstract class AndroidWordLevelSpellCheckerSession extends Session {
private final ContentObserver mObserver;
private static final String quotesRegexp =
"\\u0022|\\u0027|\\u0060|\\u00B4|\\u2018|\\u2018|\\u201C|\\u201D";
"(\\u0022|\\u0027|\\u0060|\\u00B4|\\u2018|\\u2018|\\u201C|\\u201D)";
private static final class SuggestionsParams {
public final String[] mSuggestions;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment