File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- Signature: 4f2f6f3820bc3297f81495a994035ef4
1
+ Signature: f090834bf22f515d09c8d64dc143db47
2
2
Original file line number Diff line number Diff line change @@ -2258,8 +2258,8 @@ class _Progress {
2258
2258
Future <String > _readSignature (String goldenPath) async {
2259
2259
try {
2260
2260
final system.File goldenFile = system.File (goldenPath);
2261
- final String goldenSignature = await goldenFile.openRead ()
2262
- .transform (utf8.decoder). transform ( const LineSplitter ()).first;
2261
+ final String goldenSignature = await utf8.decoder. bind ( goldenFile.openRead () )
2262
+ .transform (const LineSplitter ()).first;
2263
2263
final RegExp signaturePattern = RegExp (r'Signature: (\w+)' );
2264
2264
final Match goldenMatch = signaturePattern.matchAsPrefix (goldenSignature);
2265
2265
if (goldenMatch != null )
You can’t perform that action at this time.
0 commit comments