MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / getSubSet

Method getSubSet

src/main/java/net/optifine/NextTickHashSet.java:110–123  ·  view source on GitHub ↗
(NextTickListEntry entry, boolean autoCreate)

Source from the content-addressed store, hash-verified

108 }
109
110 private Set getSubSet(NextTickListEntry entry, boolean autoCreate)
111 {
112 if (entry == null)
113 {
114 return null;
115 }
116 else
117 {
118 BlockPos blockpos = entry.position;
119 int i = blockpos.getX() >> 4;
120 int j = blockpos.getZ() >> 4;
121 return this.getSubSet(i, j, autoCreate);
122 }
123 }
124
125 private Set getSubSet(int cx, int cz, boolean autoCreate)
126 {

Callers 4

containsMethod · 0.95
addMethod · 0.95
removeMethod · 0.95
iteratorMethod · 0.95

Calls 5

chunkXZ2IntMethod · 0.95
getValueByKeyMethod · 0.80
getXMethod · 0.65
getZMethod · 0.65
addMethod · 0.45

Tested by

no test coverage detected