Throw the throwables
This commit is contained in:
parent
e1627734b1
commit
ddd998fe31
8 changed files with 8 additions and 8 deletions
|
@ -34,7 +34,7 @@ public class Crusher implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "Crusher must have a single input, and single output." );
|
||||
throw new RecipeError( "Crusher must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -31,7 +31,7 @@ public class Grind implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "Grind must have a single input, and single output." );
|
||||
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -34,7 +34,7 @@ public class GrindFZ implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "Grind must have a single input, and single output." );
|
||||
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -33,7 +33,7 @@ public class HCCrusher implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "Crusher must have a single input, and single output." );
|
||||
throw new RecipeError( "Crusher must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -34,7 +34,7 @@ public class Macerator implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "Grind must have a single input, and single output." );
|
||||
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -34,7 +34,7 @@ public class MekCrusher implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "MekCrusher must have a single input, and single output." );
|
||||
throw new RecipeError( "MekCrusher must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -34,7 +34,7 @@ public class MekEnrichment implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "MekCrusher must have a single input, and single output." );
|
||||
throw new RecipeError( "MekCrusher must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -32,7 +32,7 @@ public class Pulverizer implements ICraftHandler, IWebsiteSerializer
|
|||
return;
|
||||
}
|
||||
}
|
||||
new RecipeError( "Grind must have a single input, and single output." );
|
||||
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue