From: Martin Quinson Date: Tue, 3 Sep 2013 15:05:16 +0000 (+0200) Subject: java examples: align the package declaration with the directory name X-Git-Tag: v3_9_90~123^2~25 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6cc00a36431e4a6ef99b445115ab53325194b9fd?hp=4ff291abdbae0bd6effa23914a744b0fc43e4588 java examples: align the package declaration with the directory name --- diff --git a/examples/java/mutualExclusion/Coordinator.java b/examples/java/mutualExclusion/Coordinator.java index ad62a602c4..44fc41b84a 100644 --- a/examples/java/mutualExclusion/Coordinator.java +++ b/examples/java/mutualExclusion/Coordinator.java @@ -5,7 +5,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ -package mutualExclusion.centralized; +package mutualExclusion; import java.util.LinkedList; import org.simgrid.msg.Host; diff --git a/examples/java/mutualExclusion/GrantTask.java b/examples/java/mutualExclusion/GrantTask.java index e9bdda057e..60d59e20ef 100644 --- a/examples/java/mutualExclusion/GrantTask.java +++ b/examples/java/mutualExclusion/GrantTask.java @@ -4,7 +4,7 @@ * 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. */ -package mutualExclusion.centralized; +package mutualExclusion; import org.simgrid.msg.Task; diff --git a/examples/java/mutualExclusion/MutexCentral.java b/examples/java/mutualExclusion/MutexCentral.java index 0ed4d54c80..94702a6ca6 100644 --- a/examples/java/mutualExclusion/MutexCentral.java +++ b/examples/java/mutualExclusion/MutexCentral.java @@ -4,7 +4,7 @@ * 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. */ -package mutualExclusion.centralized; +package mutualExclusion; import org.simgrid.msg.Msg; import org.simgrid.msg.NativeException; diff --git a/examples/java/mutualExclusion/Node.java b/examples/java/mutualExclusion/Node.java index 4dfa77a3c8..b316367208 100644 --- a/examples/java/mutualExclusion/Node.java +++ b/examples/java/mutualExclusion/Node.java @@ -4,7 +4,7 @@ * 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. */ -package mutualExclusion.centralized; +package mutualExclusion; import org.simgrid.msg.Host; import org.simgrid.msg.Msg; diff --git a/examples/java/mutualExclusion/ReleaseTask.java b/examples/java/mutualExclusion/ReleaseTask.java index a33bf24ee5..46db893027 100644 --- a/examples/java/mutualExclusion/ReleaseTask.java +++ b/examples/java/mutualExclusion/ReleaseTask.java @@ -4,6 +4,6 @@ * 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. */ -package mutualExclusion.centralized; +package mutualExclusion; public class ReleaseTask extends org.simgrid.msg.Task { } diff --git a/examples/java/mutualExclusion/RequestTask.java b/examples/java/mutualExclusion/RequestTask.java index 4615509f1b..d9d9721a16 100644 --- a/examples/java/mutualExclusion/RequestTask.java +++ b/examples/java/mutualExclusion/RequestTask.java @@ -4,7 +4,7 @@ * 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. */ -package mutualExclusion.centralized; +package mutualExclusion; import org.simgrid.msg.Task; public class RequestTask extends Task {