Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Further cleanups of the Java bindings:
[simgrid.git] / src / java / simgrid / msg / Sem.java
index e71317f..6e44870 100644 (file)
@@ -18,7 +18,7 @@
   \r\rpublic Sem(int i) {
     \rpermits_ = i;
   \r\r\rpublic void acquire() throws InterruptedException {
-    \r \r if (Thread.interrupted())
+    \r\rif (Thread.interrupted())
       \rthrow new InterruptedException();
     \r\rsynchronized(this) {
       \r\rtry {