diff src/org/eclipse/jetty/server/handler/RequestLogHandler.java @ 928:23a57aad34c0

remove isAsync()
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 09 Oct 2016 18:54:32 -0600
parents ea1768c00d03
children 3191abe890ef
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/handler/RequestLogHandler.java	Sun Oct 09 18:34:24 2016 -0600
+++ b/src/org/eclipse/jetty/server/handler/RequestLogHandler.java	Sun Oct 09 18:54:32 2016 -0600
@@ -79,25 +79,7 @@
 		{
 			if (baseRequest.getDispatcherType().equals(DispatcherType.REQUEST))
 			{
-				if (continuation.isAsync())
-				{
-					if (continuation.isInitial())
-						continuation.addContinuationListener(new ContinuationListener()
-						{
-
-							public void onTimeout(Continuation continuation)
-							{
-
-							}
-
-							public void onComplete(Continuation continuation)
-							{
-								log(baseRequest, (Response)response);
-							}
-						});
-				}
-				else
-					log(baseRequest, (Response)response);
+				log(baseRequest, (Response)response);
 			}
 		}
 	}