Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Simplify this example by not declaring BasicTask since that's empty
[simgrid.git] / examples / java / basic / BasicTask.java
diff --git a/examples/java/basic/BasicTask.java b/examples/java/basic/BasicTask.java
deleted file mode 100644 (file)
index 2ba5f2e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. 
- */
-
-import simgrid.msg.*;
-
-public class BasicTask extends Task {
-       
-    public BasicTask(String name, double computeDuration, double messageSize) throws JniException{
-       super(name,computeDuration,messageSize);                
-    }
-}