Merge "Cleanup spaces in output."
diff --git a/Interface.cpp b/Interface.cpp
index 436f836..be4f4fe 100644
--- a/Interface.cpp
+++ b/Interface.cpp
@@ -312,6 +312,10 @@
 
 status_t Interface::emitVtsMethodDeclaration(Formatter &out) const {
     for (const auto &method : methods()) {
+        if (method->isHidlReserved()) {
+            continue;
+        }
+
         out << "api: {\n";
         out.indent();
         out << "name: \"" << method->name() << "\"\n";