updated Makefile.common
[org.ibex.core.git] / src / org / ibex / util / Semaphore.java
index 79dc268..ad8376f 100644 (file)
@@ -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) {