From a07ad75a6cd8b1108b49753aeedb71ee2c418468 Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Thu, 5 Mar 2015 12:55:58 -0700 Subject: [PATCH] Adding license header --- .../org/eclipse/jetty/proxy/Async502Loop.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/jetty-proxy/src/test/java/org/eclipse/jetty/proxy/Async502Loop.java b/jetty-proxy/src/test/java/org/eclipse/jetty/proxy/Async502Loop.java index 106a51d3586..22cf86e09d5 100644 --- a/jetty-proxy/src/test/java/org/eclipse/jetty/proxy/Async502Loop.java +++ b/jetty-proxy/src/test/java/org/eclipse/jetty/proxy/Async502Loop.java @@ -1,3 +1,21 @@ +// +// ======================================================================== +// Copyright (c) 1995-2015 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.proxy; import java.io.IOException; @@ -61,6 +79,7 @@ public class Async502Loop public Async502Loop() { proxyServlet = new AsyncProxyServlet(); + // proxyServlet = new AsyncMiddleManServlet(); } private void startServer(HttpServlet servlet) throws Exception