aboutsummaryrefslogtreecommitdiffstats
path: root/src/algorithms
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-20 01:16:49 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-20 01:16:49 +0100
commitf3077857c2cf1af11da3f0009e09be887794c660 (patch)
treee6d1ace17484f0ffb910ebda4ebe243399750085 /src/algorithms
parentm (diff)
downloadalgorithms-and-data-structures-f3077857c2cf1af11da3f0009e09be887794c660.tar.gz
algorithms-and-data-structures-f3077857c2cf1af11da3f0009e09be887794c660.tar.bz2
algorithms-and-data-structures-f3077857c2cf1af11da3f0009e09be887794c660.tar.xz
fix package declaration
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/algorithms')
-rw-r--r--src/algorithms/shuffling/CardShuffle.java2
-rw-r--r--src/algorithms/shuffling/HumanShuffle.java2
-rw-r--r--src/algorithms/shuffling/KnuthShuffle.java2
-rw-r--r--src/algorithms/shuffling/SattoloShuffle.java2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/algorithms/shuffling/CardShuffle.java b/src/algorithms/shuffling/CardShuffle.java
index 3e88fe1..098f855 100644
--- a/src/algorithms/shuffling/CardShuffle.java
+++ b/src/algorithms/shuffling/CardShuffle.java
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-package algorithms.arrays;
+package algorithms.shuffling;
import java.util.Random;
diff --git a/src/algorithms/shuffling/HumanShuffle.java b/src/algorithms/shuffling/HumanShuffle.java
index cfdc6b9..ed3e519 100644
--- a/src/algorithms/shuffling/HumanShuffle.java
+++ b/src/algorithms/shuffling/HumanShuffle.java
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-package algorithms.arrays;
+package algorithms.shuffling;
import java.util.Random;
diff --git a/src/algorithms/shuffling/KnuthShuffle.java b/src/algorithms/shuffling/KnuthShuffle.java
index 7414e49..910b685 100644
--- a/src/algorithms/shuffling/KnuthShuffle.java
+++ b/src/algorithms/shuffling/KnuthShuffle.java
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-package algorithms.arrays;
+package algorithms.shuffling;
import java.util.Random;
diff --git a/src/algorithms/shuffling/SattoloShuffle.java b/src/algorithms/shuffling/SattoloShuffle.java
index 78ab41d..163464c 100644
--- a/src/algorithms/shuffling/SattoloShuffle.java
+++ b/src/algorithms/shuffling/SattoloShuffle.java
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-package algorithms.arrays;
+package algorithms.shuffling;
import java.util.Random;