axum-extra: Remove stray deprecation in multipart builder (#2957)

This commit is contained in:
zleyyij
2024-10-04 16:59:26 +00:00
committed by GitHub
parent 6318b57fda
commit 31a87f8b2b
-1
View File
@@ -24,7 +24,6 @@ impl MultipartForm {
/// let parts: Vec<Part> = vec![Part::text("foo".to_string(), "abc"), Part::text("bar".to_string(), "def")];
/// let form = MultipartForm::with_parts(parts);
/// ```
#[deprecated]
pub fn with_parts(parts: Vec<Part>) -> Self {
MultipartForm { parts }
}