Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
bump to v27.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Jul 24, 2024
1 parent 5a7b75a commit 872909c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-link-visualizer"
version = "27.0.0-alpha.0"
version = "27.0.0-alpha.1"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand Down
8 changes: 2 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,13 +500,9 @@ impl<D: Directivity, B: Backend> Link for Visualizer<D, B> {
Ok(true)
}

fn update(
&mut self,
geometry: &Geometry,
) -> impl std::future::Future<Output = Result<(), AUTDInternalError>> {
async fn update(&mut self, geometry: &Geometry) -> Result<(), AUTDInternalError> {
self.geometry = clone_geometry(geometry);

async { Ok(()) }
Ok(())
}

fn is_open(&self) -> bool {
Expand Down

0 comments on commit 872909c

Please sign in to comment.