Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill trailing whitespaces in source code files.
[simgrid.git] / src / bindings / java / org / simgrid / msg / Task.java
index 3565938..c93c03c 100644 (file)
@@ -52,9 +52,9 @@ public class Task {
                        throw new IllegalArgumentException("Task flopsAmount (" + flopsAmount + ") cannot be negative");
                if (bytesAmount<0)
                        throw new IllegalArgumentException("Task bytesAmount (" + bytesAmount + ") cannot be negative");
-                       
+
                create(name, flopsAmount, bytesAmount);
-               
+
                this.name = name;
                this.messageSize = bytesAmount;
        }
@@ -81,7 +81,7 @@ public class Task {
                        throw new IllegalArgumentException("Host list is null");
                if (name == null)
                        throw new IllegalArgumentException("Parallel task name is null");
-               
+
                parallelCreate(name, hosts, flopsAmount, bytesAmount);
                this.name = name;
        }