X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Futil%2FSemaphore.java;h=ad8376fb735f1a437a0fc815f84552be7d41ff00;hp=79dc268d92602488cfca838401683c27234ff27c;hb=3f8aa5300e178e8975b0edc896a5a9d303e7bdf3;hpb=3591b88b94a6bb378af3d4abe6eb5233ce583104 diff --git a/src/org/ibex/util/Semaphore.java b/src/org/ibex/util/Semaphore.java index 79dc268..ad8376f 100644 --- a/src/org/ibex/util/Semaphore.java +++ b/src/org/ibex/util/Semaphore.java @@ -12,8 +12,6 @@ public class Semaphore { private int val = 0; - public Semaphore() { }; - /** Decrement the counter, blocking if zero. */ public synchronized void block() { while(val == 0) {