Remove deprecated call to time's set_soundness function

No longer required.
This commit is contained in:
Ian Douglas Scott 2025-05-15 14:33:46 -07:00 committed by Victoria Brekenfeld
parent d3822d161a
commit b4db2498de
2 changed files with 1 additions and 9 deletions

View file

@ -510,15 +510,7 @@ impl State {
.with_context(|| "Failed to load languages")
.unwrap();
#[cfg(feature = "profile-with-tracy")]
unsafe {
time::util::local_offset::set_soundness(time::util::local_offset::Soundness::Unsound);
}
let local_offset = UtcOffset::current_local_offset().expect("No yet multithreaded");
#[cfg(feature = "profile-with-tracy")]
unsafe {
time::util::local_offset::set_soundness(time::util::local_offset::Soundness::Sound);
}
let clock = Clock::new();
let config = Config::load(&handle);
let compositor_state = CompositorState::new::<Self>(dh);