Merge "check-flagged-apis: remove debug print" into main am: c791547786

Original change: https://android-review.googlesource.com/c/platform/build/+/3061974

Change-Id: Ifa46a189fb7996f9198a49c8e32906b3319cd379
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
index c3a323b..0c078a0 100644
--- a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
+++ b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
@@ -269,7 +269,7 @@
         }
     val methodSignatureParts = methodSignature.split(Regex("\\(|\\)"))
     if (methodSignatureParts.size != 3) {
-      throw Exception("Bad XML: method signature '$methodSignature': debug $methodSignatureParts")
+      throw Exception("Bad XML: method signature '$methodSignature'")
     }
     var (methodName, methodArgs, methodReturnValue) = methodSignatureParts
     val packageAndClassName =