-- 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); final String envName = fromArgToEnvName(name);
if (env[envName] != null) { if (env[envName] != null) {
return (env[envName]?.toUpperCase()) == 'TRUE'; return env[envName]?.toUpperCase() == 'TRUE';
} }
return argResults[name] as bool; 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}) { Size getChildSize(WidgetTester tester, {int child = 0}) {
// Using dynamic so the test can access private classes. // Using dynamic so the test can access private classes.
// ignore: avoid_dynamic_calls // ignore: avoid_dynamic_calls
return ((getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>) return (getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>)
.getChildrenAsList()[child]).size; .getChildrenAsList()[child].size;
} }
Color getBorderColor(WidgetTester tester) { Color getBorderColor(WidgetTester tester) {

View File

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