Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
small cleanups in Java advised by eclipse
[simgrid.git] / examples / java / io / file / Node.java
index ff16438..df9e214 100644 (file)
@@ -73,7 +73,7 @@ public class Node extends Process {
     Msg.info("Having write " + write + " on " + filename);
 
     Msg.info("Seek back to the beginning of " + filename);
-    file.seek(0,file.SEEK_SET);
+    file.seek(0,File.SEEK_SET);
 
     read = file.read(150000,1);
     Msg.info("Having read " + read + " on " + filename);