MCPcopy Create free account
hub / github.com/LFYSec/MScan / SyncBox

Class SyncBox

src/test/resources/pta/misc/Zipper.java:82–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82class SyncBox {
83
84 Box box;
85
86 SyncBox(Box box) {
87 this.box = box;
88 }
89
90 Object get() {
91 synchronized(this) {
92 Box b = this.box;
93 return b.get();
94 }
95 }
96}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected