remove redundant suppression in Structure

This commit is contained in:
dfsek
2021-07-22 18:43:01 -07:00
parent 7d70b8fcdf
commit 6d0a32f251

View File

@@ -18,15 +18,11 @@ public interface Structure extends StringIdentifiable {
* @param rotation Rotation of structure
* @return Whether generation was successful
*/
@SuppressWarnings("try")
boolean generate(Vector3 location, World world, Random random, Rotation rotation);
@SuppressWarnings("try")
boolean generate(Vector3 location, World world, Chunk chunk, Random random, Rotation rotation);
@SuppressWarnings("try")
boolean generate(Buffer buffer, World world, Random random, Rotation rotation, int recursions);
@SuppressWarnings("try")
boolean generateDirect(Vector3 location, World world, Random random, Rotation rotation);
}