From 4a220b09967f84f830db029501dbef6efc4ee9f9 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 2 Aug 2026 06:04:21 +0900 Subject: refactor(symfony-console): drop unused Cursor methods Remove the eight Cursor methods that have no callers, and the sscanf shim whose only caller was Cursor::get_current_position. Co-Authored-By: Claude Fable 5 --- crates/shirabe-php-shim/src/string.rs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'crates/shirabe-php-shim/src/string.rs') diff --git a/crates/shirabe-php-shim/src/string.rs b/crates/shirabe-php-shim/src/string.rs index aad5c884..28acb3bb 100644 --- a/crates/shirabe-php-shim/src/string.rs +++ b/crates/shirabe-php-shim/src/string.rs @@ -598,12 +598,6 @@ fn hex_digit_value(b: u8) -> Option { } } -pub fn sscanf(_subject: &str, _format: &str, _a: &mut i64, _b: &mut i64) -> i64 { - // TODO(phase-d): a general sscanf format-string parser is not ported; this specialized two-int - // overload has no current callers. - todo!() -} - pub fn sprintf(_format: &str, _args: &[PhpMixed]) -> String { let fb = _format.as_bytes(); let mut out = String::new(); -- cgit v1.3.1