mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Minor formatting fix in license script (flutter/engine#4381)
Fixes an errrant tab and unnecessary braces.
This commit is contained in:
parent
353f9063f4
commit
2aad4c763e
@ -2343,9 +2343,8 @@ class Progress {
|
||||
_lastUpdate ??= new Stopwatch();
|
||||
final String line = toString();
|
||||
system.stderr.write('\r$line');
|
||||
if (_lastLength > line.length) {
|
||||
system.stderr.write(' ' * (_lastLength - line.length));
|
||||
}
|
||||
if (_lastLength > line.length)
|
||||
system.stderr.write(' ' * (_lastLength - line.length));
|
||||
_lastLength = line.length;
|
||||
_lastUpdate.reset();
|
||||
_lastUpdate.start();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user