mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 16:32:29 +00:00
remove unnecessary type hint
This commit is contained in:
@@ -92,7 +92,7 @@ impl<R: Resource> HandlePropfind for R {
|
|||||||
props = R::list_dead_props().into();
|
props = R::list_dead_props().into();
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut invalid_props = Vec::<&str>::new();
|
let mut invalid_props = Vec::new();
|
||||||
let mut prop_responses = Vec::new();
|
let mut prop_responses = Vec::new();
|
||||||
for prop in props {
|
for prop in props {
|
||||||
if let Ok(valid_prop) = R::PropType::from_str(prop) {
|
if let Ok(valid_prop) = R::PropType::from_str(prop) {
|
||||||
|
|||||||
Reference in New Issue
Block a user