am 08874db8: Merge "Fix HierarchyViewer so it can load Contacts" into jb-mr1-dev

* commit '08874db8ed9f81f1d0f205bbffe87f913e50bc57':
  Fix HierarchyViewer so it can load Contacts
This commit is contained in:
Romain Guy
2012-09-27 23:43:06 -07:00
committed by Android Git Automerger

View File

@@ -1178,10 +1178,14 @@ public class ViewDebug {
private static void writeValue(BufferedWriter out, Object value) throws IOException {
if (value != null) {
String output = value.toString().replace("\n", "\\n");
out.write(String.valueOf(output.length()));
out.write(",");
out.write(output);
String output = "[EXCEPTION]";
try {
output = value.toString().replace("\n", "\\n");
} finally {
out.write(String.valueOf(output.length()));
out.write(",");
out.write(output);
}
} else {
out.write("4,null");
}