removed unused function

This commit is contained in:
Nickiel12 2022-01-02 21:50:53 -08:00
parent a33a6f7b37
commit c8737d64a2

View file

@ -63,13 +63,3 @@ pub enum SlideChange {
Next,
Previous,
}
impl SlideChange {
pub fn to_string(&self) -> String {
match self {
SlideChange::Next => {String::from_str("Next_Slide").unwrap()},
SlideChange::Previous => {String::from_str("Prev_Slide").unwrap()},
}
}
}