Archived
0

fix: BlockLocation#clone() возвращал null в случае ошибки

This commit is contained in:
2018-11-19 13:11:51 +03:00
parent 46413c4a0d
commit 217a329b5e

View File

@@ -26,7 +26,7 @@ public class BlockLocation implements Cloneable {
return (BlockLocation) super.clone(); return (BlockLocation) super.clone();
} catch (CloneNotSupportedException e) { } catch (CloneNotSupportedException e) {
e.printStackTrace(); e.printStackTrace();
return null; return ZERO();
} }
} }
} }