Merge branch 'abbrev' of github.com:google/bloaty into abbrev
diff --git a/src/bloaty.cc b/src/bloaty.cc
index 41a3bcf..dbea25e 100644
--- a/src/bloaty.cc
+++ b/src/bloaty.cc
@@ -338,6 +338,7 @@
 }
 
 std::string Demangler::Demangle(const std::string& symbol) {
+  return symbol;
   const char *writeptr = symbol.c_str();
   const char *writeend = writeptr + symbol.size();
 
@@ -1090,8 +1091,6 @@
   PrettyPrintRow(toplevel_row_, 0, out);
 
   if (abbrevs_.size() > 0) {
-    *out << "\n";
-    *out << "  Abbreviations:\n";
     for (const auto& abbrev : abbrevs_) {
       *out << "     " << abbrev.first << ": " << abbrev.second << "\n";
     }