am b30a24c4: Merge "return value of String.replace() is ignored."
* commit 'b30a24c4db8d2ed5f3ecfda0f6197fa974ae56d7': return value of String.replace() is ignored.
This commit is contained in:
@@ -223,8 +223,8 @@ public class NativeDaemonEvent {
|
|||||||
current++; // skip the trailing quote
|
current++; // skip the trailing quote
|
||||||
}
|
}
|
||||||
// unescape stuff within the word
|
// unescape stuff within the word
|
||||||
word.replace("\\\\", "\\");
|
word = word.replace("\\\\", "\\");
|
||||||
word.replace("\\\"", "\"");
|
word = word.replace("\\\"", "\"");
|
||||||
|
|
||||||
if (DEBUG_ROUTINE) Slog.e(LOGTAG, "found '" + word + "'");
|
if (DEBUG_ROUTINE) Slog.e(LOGTAG, "found '" + word + "'");
|
||||||
parsed.add(word);
|
parsed.add(word);
|
||||||
|
|||||||
Reference in New Issue
Block a user