ToroCraft / Minecoprocessors

Increase your redstone possibilities and learn assembly programming at the same time with the Minecoprocessors Minecraft Mod!
https://minecraft.curseforge.com/projects/minecoprocessors
GNU General Public License v3.0
33 stars 10 forks source link

Remove unnecessary try-catch block #26

Closed josephcsible closed 7 years ago

josephcsible commented 7 years ago

Nothing inside of this try-catch block throws any checked exceptions (if it did, removing it would cause a compile error), and all unchecked exceptions are either already RuntimeExceptions (so this is just wrapping an exception in a less detailed version of itself) or Errors (so this isn't catching them anyway).