Remove unused Display impl.

This commit is contained in:
Scetch 2016-04-03 11:16:51 -04:00
parent dc9e70bd72
commit 051f836fde
1 changed files with 0 additions and 7 deletions

View File

@ -24,7 +24,6 @@
// Fire (Update State)
// CobblestoneWall (Connections)
use std::fmt::{Display, Formatter, Error};
use collision::{Aabb, Aabb3};
use cgmath::Point3;
use types::Direction;
@ -4105,12 +4104,6 @@ pub enum StoneVariant {
SmoothAndesite,
}
impl Display for StoneVariant {
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
write!(f, "{}", self.as_string())
}
}
impl StoneVariant {
pub fn as_string(&self) -> &'static str {
match *self {