am 79e0e3fd: Merge "return value of String.replace() is ignored."

* commit '79e0e3fd69ba6426da6575e0c778eff205318172':
  return value of String.replace() is ignored.
This commit is contained in:
Robert Greenwalt
2012-12-11 16:52:39 -08:00
committed by Android Git Automerger

View File

@@ -223,8 +223,8 @@ public class NativeDaemonEvent {
current++; // skip the trailing quote
}
// unescape stuff within the word
word.replace("\\\\", "\\");
word.replace("\\\"", "\"");
word = word.replace("\\\\", "\\");
word = word.replace("\\\"", "\"");
if (DEBUG_ROUTINE) Slog.e(LOGTAG, "found '" + word + "'");
parsed.add(word);