MCPcopy
hub / github.com/careercup/ctci / delete

Method delete

java/Chapter 8/Question8_9/Entry.java:16–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14 }
15
16 public boolean delete() {
17 if (parent == null) {
18 return false;
19 }
20 return parent.deleteEntry(this);
21 }
22
23 public abstract int size();
24

Callers

nothing calls this directly

Calls 1

deleteEntryMethod · 0.80

Tested by

no test coverage detected