Skip to content

Commit 513f68b

Browse files
Dianne HackbornAndroid Git Automerger
authored andcommitted
am bfe20d1: am 8bfba7d: Merge "fix wrong substring"
* commit 'bfe20d1aa1b1236e6592914c5682c59d94936432': fix wrong substring
2 parents 790d340 + bfe20d1 commit 513f68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/provider/ContactsContract.java

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8362,7 +8362,7 @@ public static String snippetize(String content, String displayName, String query
83628362
// Line contains the query string - now search for it at the start of tokens.
83638363
List<String> lineTokens = new ArrayList<String>();
83648364
List<Integer> tokenOffsets = new ArrayList<Integer>();
8365-
split(contentLine.trim(), lineTokens, tokenOffsets);
8365+
split(contentLine, lineTokens, tokenOffsets);
83668366

83678367
// As we find matches against the query, we'll populate this list with the marked
83688368
// (or unchanged) tokens.

0 commit comments

Comments
 (0)