Mercurial Hosting > luan
changeset 908:e003b20780c4
remove NIOConnector
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 07 Oct 2016 15:17:01 -0600 |
parents | bc4e299de953 |
children | c60c1adfac3e |
files | src/org/eclipse/jetty/server/AbstractHttpConnection.java src/org/eclipse/jetty/server/nio/NIOConnector.java |
diffstat | 2 files changed, 0 insertions(+), 32 deletions(-) [+] |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/AbstractHttpConnection.java Fri Oct 07 15:14:16 2016 -0600 +++ b/src/org/eclipse/jetty/server/AbstractHttpConnection.java Fri Oct 07 15:17:01 2016 -0600 @@ -54,7 +54,6 @@ import org.eclipse.jetty.io.EofException; import org.eclipse.jetty.io.RuntimeIOException; import org.eclipse.jetty.server.handler.ErrorHandler; -import org.eclipse.jetty.server.nio.NIOConnector; import org.eclipse.jetty.util.QuotedStringTokenizer; import org.eclipse.jetty.util.StringUtil; import org.eclipse.jetty.util.URIUtil;
--- a/src/org/eclipse/jetty/server/nio/NIOConnector.java Fri Oct 07 15:14:16 2016 -0600 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// -// ======================================================================== -// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. -// ------------------------------------------------------------------------ -// All rights reserved. This program and the accompanying materials -// are made available under the terms of the Eclipse Public License v1.0 -// and Apache License v2.0 which accompanies this distribution. -// -// The Eclipse Public License is available at -// http://www.eclipse.org/legal/epl-v10.html -// -// The Apache License v2.0 is available at -// http://www.opensource.org/licenses/apache2.0.php -// -// You may elect to redistribute this code under either of these licenses. -// ======================================================================== -// - -package org.eclipse.jetty.server.nio; - -/** - * NIOConnector. - * A marker interface that indicates that NIOBuffers can be handled (efficiently) by this Connector. - * - * - * - */ -public interface NIOConnector -{ - boolean getUseDirectBuffers(); -}