MCPcopy Create free account
hub / github.com/antlr/codebuff / run

Method run

output/java_guava/1.4.16/Finalizer.java:115–127  ·  view source on GitHub ↗

Loops continuously, pulling references off the queue and cleaning them up.

()

Source from the content-addressed store, hash-verified

113 */
114
115 @SuppressWarnings("InfiniteLoopStatement")
116 @Override
117 public void run() {
118 while (true) {
119 try {
120 if (!cleanUp(queue.remove())) {
121 break;
122 }
123 } catch (InterruptedException e) {
124 // ignore
125 }
126 }
127 }
128
129 /**
130 * Cleans up a single reference. Catches and logs all throwables.

Callers

nothing calls this directly

Calls 2

cleanUpMethod · 0.95
removeMethod · 0.65

Tested by

no test coverage detected