diff options
| author | Eskil Queseth <eskilq@kth.se> | 2020-11-16 02:22:59 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2020-11-16 02:22:59 +0100 |
| commit | c6cb3fc95bb00e66b66e0638cae8a036073bdeb4 (patch) | |
| tree | 3fbcc06ff183dbfff8a7f5cab64420ea1e692072 /mumd/src/state.rs | |
| parent | f9c1001b540348670feb64675699a7cd4f4401ea (diff) | |
| download | mum-c6cb3fc95bb00e66b66e0638cae8a036073bdeb4.tar.gz | |
remove a mut
Diffstat (limited to 'mumd/src/state.rs')
| -rw-r--r-- | mumd/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/state.rs b/mumd/src/state.rs index 640a839..6bb78c5 100644 --- a/mumd/src/state.rs +++ b/mumd/src/state.rs @@ -550,7 +550,7 @@ impl State { } } - pub fn initialized(&mut self) { + pub fn initialized(&self) { self.phase_watcher .0 .broadcast(StatePhase::Connected) |
