mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-09 13:16:44 +01:00
fix warnings
This commit is contained in:
parent
eccb355815
commit
4994e218f7
6 changed files with 57 additions and 49 deletions
|
|
@ -35,17 +35,14 @@ impl SequencerCli {
|
|||
editor: PhraseEditor::new(),
|
||||
phrases: Arc::new(RwLock::new(PhrasePool::new())),
|
||||
};
|
||||
if let Some(name) = self.name.as_ref() {
|
||||
// TODO
|
||||
//seq.name = Arc::new(RwLock::new(name.clone()));
|
||||
if let Some(_) = self.name.as_ref() {
|
||||
// TODO: seq.name = Arc::new(RwLock::new(name.clone()));
|
||||
}
|
||||
if let Some(ppq) = self.ppq {
|
||||
// TODO
|
||||
//seq.ppq = ppq;
|
||||
if let Some(_) = self.ppq {
|
||||
// TODO: seq.ppq = ppq;
|
||||
}
|
||||
if let Some(length) = self.length {
|
||||
// TODO
|
||||
//if let Some(phrase) = seq.phrase.as_mut() {
|
||||
if let Some(_) = self.length {
|
||||
// TODO: if let Some(phrase) = seq.phrase.as_mut() {
|
||||
//phrase.write().unwrap().length = length;
|
||||
//}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue