You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by bc...@apache.org on 2010/06/17 20:13:17 UTC

svn commit: r955692 - /click/trunk/click/framework/src/org/apache/click/Context.java

Author: bckfnn
Date: Thu Jun 17 18:13:17 2010
New Revision: 955692

URL: http://svn.apache.org/viewvc?rev=955692&view=rev
Log:
remove unused variable, X_REQUESTED_WITH was moved to ClickUtils.

Modified:
    click/trunk/click/framework/src/org/apache/click/Context.java

Modified: click/trunk/click/framework/src/org/apache/click/Context.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/Context.java?rev=955692&r1=955691&r2=955692&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/Context.java (original)
+++ click/trunk/click/framework/src/org/apache/click/Context.java Thu Jun 17 18:13:17 2010
@@ -38,7 +38,6 @@ import org.apache.click.service.LogServi
 import org.apache.click.service.TemplateService;
 import org.apache.click.util.ClickUtils;
 import org.apache.click.util.FlashAttribute;
-
 import org.apache.commons.fileupload.FileItem;
 
 /**
@@ -63,9 +62,6 @@ public class Context {
     /** The thread local context. */
     private static final ThreadLocal<ContextStack> THREAD_LOCAL_CONTEXT = new ThreadLocal<ContextStack>();
 
-    /** Ajax request header or parameter: "<tt>X-Requested-With</tt>". */
-    private static final String X_REQUESTED_WITH = "X-Requested-With";
-
     // ----------------------------------------------------- Instance Variables
 
     /** The servlet context. */