X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Futil%2FSemaphore.java;fp=src%2Forg%2Fibex%2Futil%2FSemaphore.java;h=ad8376fb735f1a437a0fc815f84552be7d41ff00;hb=e4a8b8cbccc958639f4552d94c5a7c84d09f0ebc;hp=79dc268d92602488cfca838401683c27234ff27c;hpb=385312ed5ca70d71c767aa81fc2b4dd8f1ccdd79;p=org.ibex.core.git 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) {