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.
This commit is contained in:
Gray Mackall 2024-10-21 07:20:19 -07:00 committed by GitHub
parent 8aa25aeff2
commit 76ed5355a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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'),