File tree 1 file changed +4
-4
lines changed
packages/flutter_goldens/lib
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ class SkiaGoldClient {
342
342
343
343
final io.ProcessResult result = await process.run (imgtestCommand);
344
344
345
- final String /*!*/ resultStdout = result.stdout.toString ();
345
+ final String resultStdout = result.stdout.toString ();
346
346
if (result.exitCode != 0 &&
347
347
! (resultStdout.contains ('Untriaged' ) || resultStdout.contains ('negative image' ))) {
348
348
String ? resultContents;
@@ -477,7 +477,7 @@ class SkiaGoldClient {
477
477
if (revParse.exitCode != 0 ) {
478
478
throw const SkiaException ('Current commit of Flutter can not be found.' );
479
479
}
480
- return (revParse.stdout as String /*!*/ ).trim ();
480
+ return (revParse.stdout as String ).trim ();
481
481
}
482
482
}
483
483
@@ -517,12 +517,12 @@ class SkiaGoldClient {
517
517
final File authFile = workDirectory.childFile (fs.path.join (
518
518
'temp' ,
519
519
'auth_opt.json' ,
520
- ))/*!*/ ;
520
+ ));
521
521
522
522
if (await authFile.exists ()) {
523
523
final String contents = await authFile.readAsString ();
524
524
final Map <String , dynamic > decoded = json.decode (contents) as Map <String , dynamic >;
525
- return ! (decoded['GSUtil' ] as bool /*!*/ );
525
+ return ! (decoded['GSUtil' ] as bool );
526
526
}
527
527
return false ;
528
528
}
You can’t perform that action at this time.
0 commit comments