rleland 2003/08/09 21:58:54 Modified: src/share/org/apache/struts/action PlugIn.java Log: By definition an interface has only public methods so remove keyword 'public' Revision Changes Path 1.11 +6 -6 jakarta-struts/src/share/org/apache/struts/action/PlugIn.java Index: PlugIn.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/PlugIn.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- PlugIn.java 15 Apr 2003 00:18:45 -0000 1.10 +++ PlugIn.java 10 Aug 2003 04:58:53 -0000 1.11 @@ -94,7 +94,7 @@ * <p>Receive notification that our owning module is being * shut down.</p> */ - public void destroy(); + void destroy(); /** @@ -109,7 +109,7 @@ * @exception ServletException if this <code>PlugIn</code> cannot * be successfully initialized */ - public void init(ActionServlet servlet, ModuleConfig config) + void init(ActionServlet servlet, ModuleConfig config) throws ServletException;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]