Browse Source

redundant bit of code

pull/112/head
jake 2 years ago
committed by andy
parent
commit
bdfcb5c0ad
  1. 11
      src/ship/items/state.rs

11
src/ship/items/state.rs

@ -22,7 +22,6 @@ pub enum TriggerCreateItem {
}
#[derive(thiserror::Error, Debug)]
enum ItemStateError {
#[error("character {0} not found")]
@ -42,17 +41,9 @@ enum ItemStateError {
Dummy,
#[error("gateway")]
GatewayError(GatewayError),
}
impl From<GatewayError> for ItemStateError {
fn from(other: GatewayError) -> ItemStateError {
ItemStateError::GatewayError(other)
}
GatewayError(#[from] GatewayError),
}
enum GatewayActions {
ItemNote(ItemEntityId, ItemNote),
}

Loading…
Cancel
Save