remove unused

This commit is contained in:
freestrings 2019-03-28 22:28:31 +09:00
parent 84008d9565
commit 493839addc

View File

@ -13,15 +13,6 @@ pub struct RefValueWrapper {
data: TypeRefValue
}
impl RefValueWrapper {
pub fn try_unwrap(self) -> RefValue {
match Arc::try_unwrap(self.data) {
Ok(ref_value) => *ref_value,
Err(e) => panic!("{:?}", e)
}
}
}
impl Eq for RefValueWrapper {}
impl Deref for RefValueWrapper {