Package nallar.collections

Examples of nallar.collections.TreeHashSet


    try {
      pendingTickListEntriesHashSet = null;
    } catch (NoSuchFieldError ignored) {
      //MCPC+ compatibility - they also remove this.
    }
    pendingTickListEntries = new TreeHashSet();
    try {
      chunkTickSet = (HashSet<ChunkCoordIntPair>) activeChunkSet;
    } catch (NoSuchFieldError ignored) {
      //Spigot support
      chunkTickSet = new HashSet<ChunkCoordIntPair>();
View Full Code Here


    if (this.entityIdMap == null) {
      this.entityIdMap = new net.minecraft.util.IntHashMap();
    }

    if (pendingTickListEntries == null) {
      pendingTickListEntries = new TreeHashSet();
    }

    this.createSpawnPosition(par1WorldSettings);
  }
View Full Code Here

TOP

Related Classes of nallar.collections.TreeHashSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.