dlr 02/04/24 11:33:46 Modified: src/java/org/apache/turbine/services/pull TurbinePullService.java Log: Made ToolData cleaner yet. Revision Changes Path 1.14 +3 -12 jakarta-turbine-3/src/java/org/apache/turbine/services/pull/TurbinePullService.java Index: TurbinePullService.java =================================================================== RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/services/pull/TurbinePullService.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -u -r1.13 -r1.14 --- TurbinePullService.java 24 Apr 2002 18:29:36 -0000 1.13 +++ TurbinePullService.java 24 Apr 2002 18:33:46 -0000 1.14 @@ -143,7 +143,7 @@ * @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a> * @author <a href="mailto:[EMAIL PROTECTED]">Sean Legassick</a> * @author <a href="mailto:[EMAIL PROTECTED]">Martin Poeschl</a> - * @version $Id: TurbinePullService.java,v 1.13 2002/04/24 18:29:36 dlr Exp $ + * @version $Id: TurbinePullService.java,v 1.14 2002/04/24 18:33:46 dlr Exp $ */ public class TurbinePullService extends BaseService @@ -160,9 +160,8 @@ private TemplateContext globalContext; /** - * This inner class is used in the lists below to store the - * tool name and class for each of request, session and persistent - * tools + * This inner class is used to store lists of tool and class + * name pairs. */ protected static class ToolData { @@ -173,14 +172,6 @@ { this.toolName = toolName; this.toolClassName = toolClassName; - } - - /** - * @deprecated toolClass is no longer stored in ToolData - */ - public ToolData(String toolName, String toolClassName, Class toolClass) - { - this(toolName, toolClassName); } }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>