Bug 702624 - Fix regex for replaceAll so it doesn't die. r=blassey

This commit is contained in:
Kartikaya Gupta 2011-12-15 10:46:36 -05:00
parent 08ab6292b8
commit 919fdf2cf1

View File

@ -331,6 +331,6 @@ public class CrashReporter extends Activity
}
private String unescape(String string) {
return string.replaceAll("\\\\", "\\").replaceAll("\\n", "\n").replaceAll("\\t", "\t");
return string.replaceAll("\\\\\\\\", "\\").replaceAll("\\\\n", "\n").replaceAll("\\\\t", "\t");
}
}