From 76ed5355a45a9c27d75a7fc6872d2ed66fe88e8e Mon Sep 17 00:00:00 2001 From: Gray Mackall <34871572+gmackall@users.noreply.github.com> Date: Mon, 21 Oct 2024 07:20:19 -0700 Subject: [PATCH] Delete unused string in `gradle_errors.dart` (#157187) Follow up to https://github.com/flutter/flutter/pull/157132 I stopped using this string but didn't delete it. --- packages/flutter_tools/lib/src/android/gradle_errors.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/flutter_tools/lib/src/android/gradle_errors.dart b/packages/flutter_tools/lib/src/android/gradle_errors.dart index 09540a05ba4..fa451177754 100644 --- a/packages/flutter_tools/lib/src/android/gradle_errors.dart +++ b/packages/flutter_tools/lib/src/android/gradle_errors.dart @@ -687,9 +687,6 @@ ${_getAgpLocation(project)}''', eventLabel: 'r8-dexing-bug-in-AGP-7.3' ); -@visibleForTesting -const String jlinkErrorMessage = '> Error while executing process'; - @visibleForTesting final GradleHandledError jlinkErrorWithJava21AndSourceCompatibility = GradleHandledError( test: (String line) => line.contains('> Error while executing process')&& line.contains('jlink'),