Fix compiler warnings

- Remove unused import in auth handler
- Remove unused PreferencesService export
- Fix unused mutable variable in preferences
- Remove unused display_name method from Style enum
- Add dead_code attributes for future preferences service

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Connor Johnstone
2025-09-02 10:38:13 -04:00
parent e2e5813b54
commit 970b0a07da
4 changed files with 4 additions and 9 deletions

View File

@@ -81,12 +81,6 @@ impl Style {
}
}
pub fn display_name(&self) -> &'static str {
match self {
Style::Default => "Default",
Style::Google => "Google Calendar",
}
}
pub fn stylesheet_path(&self) -> Option<&'static str> {
match self {