From 7649c91e5d4e2776fdcaa2cf91c6cb729e9b3e52 Mon Sep 17 00:00:00 2001 From: Nakul Joshi Date: Wed, 3 Jul 2024 13:29:58 -0700 Subject: [PATCH] format --- .github/scripts/backwards_compatibility_check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/backwards_compatibility_check.sh b/.github/scripts/backwards_compatibility_check.sh index 6d89e180..78f95cc6 100755 --- a/.github/scripts/backwards_compatibility_check.sh +++ b/.github/scripts/backwards_compatibility_check.sh @@ -70,7 +70,8 @@ find_removed_methods() { local latest_classes=$( jar tf $LATEST_JAR | grep .class | - tr / . | sed 's/\.class$//' | + tr / . | + sed 's/\.class$//' | # skip generated proto classes since these have a lot of inherited methods # that are not outputted by javap. besides, generated java code is not a # good indicator of proto compatibility- it will not capture reserved