Author: mrdon
Date: Wed Jun 14 11:09:15 2006
New Revision: 414328

URL: http://svn.apache.org/viewvc?rev=414328&view=rev
Log:
Fixing build errors (doh!)

WW-497

Modified:
    
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/freemarker/tags/StrutsModels.java
    
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/velocity/VelocityManager.java

Modified: 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/freemarker/tags/StrutsModels.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/freemarker/tags/StrutsModels.java?rev=414328&r1=414327&r2=414328&view=diff
==============================================================================
--- 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/freemarker/tags/StrutsModels.java
 (original)
+++ 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/freemarker/tags/StrutsModels.java
 Wed Jun 14 11:09:15 2006
@@ -40,7 +40,6 @@
     protected DateModel date;
     protected DatePickerModel datepicker;
     protected DivModel div;
-    protected DebugModel debug;
     protected DoubleSelectModel doubleselect;
     protected FileModel file;
     protected FormModel form;
@@ -129,14 +128,6 @@
         }
 
         return file;
-    }
-
-    public DebugModel getDebug() {
-        if (debug == null) {
-            debug = new DebugModel(stack, req, res);
-        }
-
-        return debug;
     }
 
     public FormModel getForm() {

Modified: 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/velocity/VelocityManager.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/velocity/VelocityManager.java?rev=414328&r1=414327&r2=414328&view=diff
==============================================================================
--- 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/velocity/VelocityManager.java
 (original)
+++ 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/velocity/VelocityManager.java
 Wed Jun 14 11:09:15 2006
@@ -527,7 +527,6 @@
         addDirective(sb, ComponentDirective.class);
         addDirective(sb, DateDirective.class);
         addDirective(sb, DatePickerDirective.class);
-        addDirective(sb, DebugDirective.class);
         addDirective(sb, DivDirective.class);
         addDirective(sb, DoubleSelectDirective.class);
         addDirective(sb, FileDirective.class);


Reply via email to