INT-690 Delegating to the OrderComparator so that PriorityOrdered elements are given precedence over regular Ordered elements.

This commit is contained in:
Mark Fisher
2009-07-02 11:25:16 +00:00
parent e35c10a769
commit 3675f8dd1b
2 changed files with 35 additions and 33 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.integration.dispatcher;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import org.junit.Test;
@@ -28,6 +28,7 @@ import static org.junit.Assert.assertEquals;
* @author Oleg Zhurakousky
* @since 1.0.3
*/
@SuppressWarnings("unchecked")
public class OrderedAwareLinkedHashSetTests {
/**