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

Method contains

src/main/java/net/optifine/NextTickHashSet.java:32–44  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

30 }
31
32 public boolean contains(Object obj)
33 {
34 if (!(obj instanceof NextTickListEntry))
35 {
36 return false;
37 }
38 else
39 {
40 NextTickListEntry nextticklistentry = (NextTickListEntry)obj;
41 Set set = this.getSubSet(nextticklistentry, false);
42 return set == null ? false : set.contains(nextticklistentry);
43 }
44 }
45
46 public boolean add(Object obj)
47 {

Callers

nothing calls this directly

Calls 1

getSubSetMethod · 0.95

Tested by

no test coverage detected