X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e0188e2a2598ce57a4d21a3d7eb5f303aecaf0dd..e37c1e4bba9bb89cd2842f08cde998eb7f941d04:/src/bindings/java/org/simgrid/msg/File.java?ds=sidebyside diff --git a/src/bindings/java/org/simgrid/msg/File.java b/src/bindings/java/org/simgrid/msg/File.java index 9076bcf789..032a6bbce2 100644 --- a/src/bindings/java/org/simgrid/msg/File.java +++ b/src/bindings/java/org/simgrid/msg/File.java @@ -38,21 +38,18 @@ public class File { protected native void open(String storage, String path, String mode); /** * Read elements of a file. - * @param storage is the name where you can find the stream * @param size of each element * @param nMemb is the number of elements of data to write */ public native long read(long size, long nMemb); /** * Write elements into a file. - * @param storage is the name where you can find the stream * @param size of each element * @param nMemb is the number of elements of data to write */ public native long write(long size, long nMemb); /** * Close the file. - * @param storage is the name where you can find the stream */ public native void close();