diff src/org/eclipse/jetty/server/AsyncContinuation.java @ 920:3268ddf919d4

remove AsyncContinuation.isAsyncStarted()
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 09 Oct 2016 03:51:31 -0600
parents dd6b1f079634
children a5af9ee7cf91
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/AsyncContinuation.java	Sun Oct 09 03:45:31 2016 -0600
+++ b/src/org/eclipse/jetty/server/AsyncContinuation.java	Sun Oct 09 03:51:31 2016 -0600
@@ -557,15 +557,6 @@
 	}
 
 	/* ------------------------------------------------------------ */
-	public boolean isCompleting()
-	{
-		synchronized (this)
-		{
-			return false;
-		}
-	}
-	
-	/* ------------------------------------------------------------ */
 	boolean isUncompleted()
 	{
 		synchronized (this)
@@ -585,20 +576,6 @@
 
 
 	/* ------------------------------------------------------------ */
-	public boolean isAsyncStarted()
-	{
-		synchronized (this)
-		{
-			switch(_state)
-			{
-				default:
-					return false;
-			}
-		}
-	}
-
-
-	/* ------------------------------------------------------------ */
 	public boolean isAsync()
 	{
 		synchronized (this)