style: Clean up backend unused warnings

This commit is contained in:
spinline
2026-01-30 01:00:36 +03:00
parent 8216f0556a
commit 6424acaa08
4 changed files with 9 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
use crate::scgi::{send_request, ScgiRequest};
use quick_xml::events::Event;
use quick_xml::reader::Reader;
use serde::Deserialize;
// Simple helper to build an XML-RPC method call
pub fn build_method_call(method: &str, params: &[&str]) -> String {
@@ -159,7 +159,7 @@ pub fn parse_string_response(xml: &str) -> Result<String, String> {
}
Ok(Event::End(ref e)) => {
if e.name().as_ref() == b"string" {
inside_string = false;
// inside_string = false;
// Assuming only one string in the response which matters
break;
}