Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6610e2d authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

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

* commit '79e0e3fd':
  return value of String.replace() is ignored.
parents 1de62393 79e0e3fd
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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);