You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by bl...@locus.apache.org on 2000/12/11 16:14:38 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/acting Action.java

bloritsch    00/12/11 07:14:36

  Modified:    src/org/apache/cocoon/acting Tag: xml-cocoon2 Action.java
  Log:
  All inteface methods/attributes are implicitly public.  Any time they are explicitly stated,
  it is semantically incorrect--and a good compiler will reject it as an error.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.4   +2 -2      xml-cocoon/src/org/apache/cocoon/acting/Attic/Action.java
  
  Index: Action.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/acting/Attic/Action.java,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- Action.java	2000/10/30 18:37:40	1.1.2.3
  +++ Action.java	2000/12/11 15:14:33	1.1.2.4
  @@ -20,7 +20,7 @@
   /**
    *
    * @author <a href="mailto:Giacomo.Pati@pwr.ch">Giacomo Pati</a>
  - * @version CVS $Revision: 1.1.2.3 $ $Date: 2000/10/30 18:37:40 $
  + * @version CVS $Revision: 1.1.2.4 $ $Date: 2000/12/11 15:14:33 $
    */
   public interface Action extends Component, ThreadSafe {
       /**
  @@ -48,7 +48,7 @@
        *                    be skipped.
        * @exception Exception Indicates something is totally wrong
        */
  -    public List act(EntityResolver resolver, Map objectModel, String source, Parameters par)
  +    List act(EntityResolver resolver, Map objectModel, String source, Parameters par)
       throws Exception;
   }