[COLLECTIONS-404] Move comparators.sequence package to top-level.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477287 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6594da9e36
commit
72f33c83d4
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
/**
|
||||
* This interface should be implemented by user object to walk
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
/**
|
||||
* Command representing the deletion of one object of the first sequence.
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
/**
|
||||
* Abstract base class for all commands used to transform an objects sequence
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
/**
|
||||
* Command representing the insertion of one object of the second sequence.
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
/**
|
||||
* Command representing the keeping of one object present in both sequences.
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
import java.util.List;
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
import java.util.List;
|
||||
|
|
@ -73,4 +73,4 @@
|
|||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
|
@ -14,15 +14,15 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.collections4.comparators.sequence;
|
||||
package org.apache.commons.collections4.sequence;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
import org.apache.commons.collections4.comparators.sequence.CommandVisitor;
|
||||
import org.apache.commons.collections4.comparators.sequence.SequencesComparator;
|
||||
import org.apache.commons.collections4.sequence.CommandVisitor;
|
||||
import org.apache.commons.collections4.sequence.SequencesComparator;
|
||||
import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
Loading…
Reference in New Issue