Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public List<Chunk> getChunks() {
  2. return new ArrayList<>(_chunks);
  3. }
  4.  
  5. private void addChunk(@Nonnull Chunk val) {
  6. _chunks.add(val);
  7. }
  8. private void removeChunk(@Nonnull Chunk val) {
  9. _chunks.remove(val);
  10. }
  11. private void clearChunk(@Nonnull Chunk val) {
  12. _chunks.clear();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement