Moved CaseIgnoringComparator to org.jboss.nety.handler.codec.http because it is used only by the classes there

This commit is contained in:
Trustin Lee 2010-01-14 11:49:53 +00:00
parent 397107adc0
commit f8de47e2da
3 changed files with 2 additions and 4 deletions

View File

@ -13,7 +13,7 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
package org.jboss.netty.util.internal;
package org.jboss.netty.handler.codec.http;
import java.io.Serializable;
import java.util.Comparator;
@ -24,7 +24,7 @@ import java.util.Comparator;
* @author Trustin Lee (trustin@gmail.com)
* @version $Rev$, $Date$
*/
public final class CaseIgnoringComparator implements Comparator<String>, Serializable {
final class CaseIgnoringComparator implements Comparator<String>, Serializable {
private static final long serialVersionUID = 4582133183775373862L;

View File

@ -19,7 +19,6 @@ import java.util.Collections;
import java.util.Set;
import java.util.TreeSet;
import org.jboss.netty.util.internal.CaseIgnoringComparator;
/**

View File

@ -21,7 +21,6 @@ import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import org.jboss.netty.util.internal.CaseIgnoringComparator;
/**
* Standard HTTP header names and values.