Skip to content

Commit fd1137b

Browse files
committed
fmt
1 parent e0b9abd commit fd1137b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

crates/isograph_compiler/src/watch.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ pub async fn handle_watch_command<TNetworkProtocol: NetworkProtocol<Sources = St
3636
info!("{}", "Starting to compile.".cyan());
3737
let _ = print_result(WithDuration::new(|| {
3838
read_all_source_files(&mut state.db)?;
39-
4039
compile::<TNetworkProtocol>(&state.db)
4140
}));
4241

@@ -55,7 +54,6 @@ pub async fn handle_watch_command<TNetworkProtocol: NetworkProtocol<Sources = St
5554
(rx, watcher) = create_debounced_file_watcher(&config);
5655
WithDuration::new(|| {
5756
read_all_source_files(&mut state.db)?;
58-
5957
compile::<TNetworkProtocol>(&state.db)
6058
})
6159
} else if changes.len() < MAX_CHANGED_FILES {
@@ -71,7 +69,6 @@ pub async fn handle_watch_command<TNetworkProtocol: NetworkProtocol<Sources = St
7169
);
7270
WithDuration::new(|| {
7371
read_all_source_files(&mut state.db)?;
74-
7572
compile::<TNetworkProtocol>(&state.db)
7673
})
7774
};

0 commit comments

Comments
 (0)