Skip to content

Commit f66d18e

Browse files
authored
[CQ] Write-only: remove unused stopwatch (#8001)
This `stopwatch` field is unused so can be safely removed.
1 parent 83ab499 commit f66d18e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

flutter-idea/src/io/flutter/run/daemon/FlutterApp.java

-4
Original file line numberDiff line numberDiff line change
@@ -780,8 +780,6 @@ class FlutterAppDaemonEventListener implements DaemonEvent.Listener {
780780
private final @NotNull FlutterApp app;
781781
private final @NotNull ProgressHelper progress;
782782

783-
private final AtomicReference<Stopwatch> stopwatch = new AtomicReference<>();
784-
785783
FlutterAppDaemonEventListener(@NotNull FlutterApp app, @NotNull Project project) {
786784
this.app = app;
787785
this.progress = new ProgressHelper(project);
@@ -887,8 +885,6 @@ public void onAppProgressStarting(@NotNull DaemonEvent.AppProgress event) {
887885
app.getConsole().clear();
888886
}
889887
}
890-
891-
stopwatch.set(Stopwatch.createStarted());
892888
}
893889

894890
if (app.getConsole() != null) {

0 commit comments

Comments
 (0)