-- unnecessary parens (#117081)

This commit is contained in:
Phil Quitslund 2022-12-14 13:18:37 -08:00 committed by GitHub
parent 57fb36ee0a
commit f9acb1e88c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -103,7 +103,7 @@ bool getBoolFromEnvOrArgs(
) {
final String envName = fromArgToEnvName(name);
if (env[envName] != null) {
return (env[envName]?.toUpperCase()) == 'TRUE';
return env[envName]?.toUpperCase() == 'TRUE';
}
return argResults[name] as bool;
}

View file

@ -69,8 +69,8 @@ ui.RRect getSurroundingRect(WidgetTester tester, {int child = 0}) {
Size getChildSize(WidgetTester tester, {int child = 0}) {
// Using dynamic so the test can access private classes.
// ignore: avoid_dynamic_calls
return ((getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>)
.getChildrenAsList()[child]).size;
return (getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>)
.getChildrenAsList()[child].size;
}
Color getBorderColor(WidgetTester tester) {

View file

@ -635,7 +635,7 @@ class FlutterValidator extends DoctorValidator {
bool _filePathContainsDirPath(String directory, String file) {
// calling .canonicalize() will normalize for alphabetic case and path
// separators
return (_fileSystem.path.canonicalize(file))
return _fileSystem.path.canonicalize(file)
.startsWith(_fileSystem.path.canonicalize(directory) + _fileSystem.path.separator);
}