[Arakhnę-Dev] [372] * Remove unsed classes. |
[ Thread Index |
Date Index
| More arakhne.org/dev Archives
]
Revision: 372
Author: galland
Date: 2012-08-18 03:02:29 +0200 (Sat, 18 Aug 2012)
Log Message:
-----------
* Remove unsed classes.
Removed Paths:
-------------
trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/AbstractWeakCollectionTestCase.java
trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueHashMapTest.java
trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueTreeMapTest.java
Deleted: trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/AbstractWeakCollectionTestCase.java
===================================================================
--- trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/AbstractWeakCollectionTestCase.java 2012-08-15 20:09:50 UTC (rev 371)
+++ trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/AbstractWeakCollectionTestCase.java 2012-08-18 01:02:29 UTC (rev 372)
@@ -1,41 +0,0 @@
-/* $Id$
- *
- * Copyright (C) 2011 Stephane GALLAND.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- * This program is free software; you can redistribute it and/or modify
- */
-package org.arakhne.util.ref;
-
-import java.util.UUID;
-
-/**
- * @author $Author: sgalland$
- * @version $FullVersion$
- * @mavengroupid $GroupId$
- * @mavenartifactid $ArtifactId$
- */
-public abstract class AbstractWeakCollectionTestCase extends AbstractCollectionTestCase<String> {
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected String createContentInstance() {
- return UUID.randomUUID().toString();
- }
-
-
-}
Deleted: trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueHashMapTest.java
===================================================================
--- trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueHashMapTest.java 2012-08-15 20:09:50 UTC (rev 371)
+++ trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueHashMapTest.java 2012-08-18 01:02:29 UTC (rev 372)
@@ -1,46 +0,0 @@
-/* $Id$
- *
- * Copyright (C) 2011-12 Stephane GALLAND.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- * This program is free software; you can redistribute it and/or modify
- */
-package org.arakhne.util.ref;
-
-import java.util.Map;
-
-/**
- * @author $Author: sgalland$
- * @version $FullVersion$
- * @mavengroupid $GroupId$
- * @mavenartifactid $ArtifactId$
- */
-public class PhantomValueHashMapTest extends AbstractReferencableValueMapTestCase {
-
- /**
- */
- public PhantomValueHashMapTest() {
- super(false);
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected Map<String,String> createMap() {
- return new PhantomValueHashMap<String,String>();
- }
-
-}
Deleted: trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueTreeMapTest.java
===================================================================
--- trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueTreeMapTest.java 2012-08-15 20:09:50 UTC (rev 371)
+++ trunk/arakhneRefs/src/test/java/org/arakhne/util/ref/PhantomValueTreeMapTest.java 2012-08-18 01:02:29 UTC (rev 372)
@@ -1,46 +0,0 @@
-/* $Id$
- *
- * Copyright (C) 2011-12 Stephane GALLAND.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- * This program is free software; you can redistribute it and/or modify
- */
-package org.arakhne.util.ref;
-
-import java.util.Map;
-
-/**
- * @author $Author: sgalland$
- * @version $FullVersion$
- * @mavengroupid $GroupId$
- * @mavenartifactid $ArtifactId$
- */
-public class PhantomValueTreeMapTest extends AbstractReferencableValueMapTestCase {
-
- /**
- */
- public PhantomValueTreeMapTest() {
- super(false);
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- protected Map<String,String> createMap() {
- return new PhantomValueTreeMap<String,String>();
- }
-
-}