commands: remove some fixed TODOs

This commit is contained in:
2025-11-24 21:59:42 +09:00
parent 47e42a3472
commit 0144dac14f
4 changed files with 0 additions and 4 deletions

View File

@@ -25,7 +25,6 @@ impl Command for ProtocolDisable {
return Err(RequestParserError::UnexpectedEOF);
}
// TODO: verify that the features are split by whitespace
let features = parts.map(|s| s.to_string()).collect::<Vec<String>>();
Ok((Request::ProtocolDisable(features), ""))

View File

@@ -25,7 +25,6 @@ impl Command for ProtocolEnable {
return Err(RequestParserError::UnexpectedEOF);
}
// TODO: verify that the features are split by whitespace
let features = parts.map(|s| s.to_string()).collect::<Vec<String>>();
Ok((Request::ProtocolEnable(features), ""))

View File

@@ -25,7 +25,6 @@ impl Command for TagTypesDisable {
return Err(RequestParserError::UnexpectedEOF);
}
// TODO: verify that the tag types are split by whitespace
let tag_types = parts.map(|s| s.to_string()).collect::<Vec<String>>();
Ok((Request::TagTypesDisable(tag_types), ""))

View File

@@ -25,7 +25,6 @@ impl Command for TagTypesEnable {
return Err(RequestParserError::UnexpectedEOF);
}
// TODO: verify that the tag types are split by whitespace
let tag_types = parts.map(|s| s.to_string()).collect::<Vec<String>>();
Ok((Request::TagTypesEnable(tag_types), ""))