Advertisement
Guest User

Untitled

a guest
Feb 4th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. protected T getOrCreateNew(int dimID, @Nonnull ChunkPos coords) {
  2. val pair = Pair.of(dimID, coords);
  3. T t = data.get(pair);
  4. if (t == null) {
  5. try {
  6. t = clazz.newInstance();
  7. } catch (Exception e) {
  8. Chisel.logger.error("Could not instantiate NBTSaveable " + clazz.getName() + "!");
  9. Throwables.propagate(e);
  10. }
  11. }
  12. data.put(pair, t);
  13. return t;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement