comparison src/org/eclipse/jetty/server/Server.java @ 991:688c39c50ee3

simplify ContextHandler
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 18 Oct 2016 00:22:46 -0600
parents af8742d31bca
children 0eba8f555c19
comparison
equal deleted inserted replaced
990:83cc6e05a58f 991:688c39c50ee3
153 LOG.debug("RESPONSE "+target+" "+connection.getResponse().getStatus()+" handled="+request.isHandled()); 153 LOG.debug("RESPONSE "+target+" "+connection.getResponse().getStatus()+" handled="+request.isHandled());
154 } 154 }
155 else 155 else
156 handle(target, request, request, response); 156 handle(target, request, request, response);
157 } 157 }
158 158 /*
159 public void join() throws InterruptedException 159 public void join() throws InterruptedException
160 { 160 {
161 threadPool.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS); 161 threadPool.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
162 } 162 }
163 163 */
164 @Override 164 @Override
165 public String toString() 165 public String toString()
166 { 166 {
167 return this.getClass().getName()+"@"+Integer.toHexString(hashCode()); 167 return this.getClass().getName()+"@"+Integer.toHexString(hashCode());
168 } 168 }