From 9aef0d9bda6efa534d9e9f8b14bcc1203374f7f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Mon, 29 Apr 2024 10:25:34 +0200 Subject: [PATCH] check-flagged-apis: remove debug print Bug: 334870672 Test: atest --host check-flagged-apis-test Change-Id: Ida3ba78bc240b5aed2382bf5a0ea12e8d1e1d763 --- .../check-flagged-apis/src/com/android/checkflaggedapis/Main.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 c3a323bb59..0c078a0b93 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 @@ internal fun parseApiVersions(input: InputStream): Set { } 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 =