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

This commit is contained in:
Michael Wright 2024-04-29 20:29:51 +00:00 committed by Gerrit Code Review
commit c791547786

View file

@ -269,7 +269,7 @@ internal fun parseApiVersions(input: InputStream): Set<Symbol> {
}
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 =