giacomo 01/09/07 04:13:53 Modified: src/org/apache/cocoon/samples/parentcm Tag: cocoon_20_branch Time.java src/org/apache/cocoon/components/store Tag: cocoon_20_branch StoreJanitor.java Log: removed unnecessary modifiers Revision Changes Path No revision No revision 1.1.2.2 +3 -2 xml-cocoon2/src/org/apache/cocoon/samples/parentcm/Time.java Index: Time.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/org/apache/cocoon/samples/parentcm/Time.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- Time.java 2001/09/06 20:56:32 1.1.2.1 +++ Time.java 2001/09/07 11:13:53 1.1.2.2 @@ -8,11 +8,12 @@ * Interface for a simple time-keeping component. */ public interface Time extends Component { - public final static String ROLE = "org.apache.cocoon.samples.parentcm.Time"; + + String ROLE = "org.apache.cocoon.samples.parentcm.Time"; /** * Gets the current time. */ - public Date getTime (); + Date getTime (); } No revision No revision 1.1.2.2 +3 -3 xml-cocoon2/src/org/apache/cocoon/components/store/StoreJanitor.java Index: StoreJanitor.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/org/apache/cocoon/components/store/StoreJanitor.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- StoreJanitor.java 2001/09/05 22:18:13 1.1.2.1 +++ StoreJanitor.java 2001/09/07 11:13:53 1.1.2.2 @@ -19,8 +19,8 @@ String ROLE = "org.apache.cocoon.components.store.StoreJanitor"; /** register method for the stores */ - public void register(Store store); + void register(Store store); /** unregister method for the stores */ - public void unregister(Store store); -} \ No newline at end of file + void unregister(Store store); +} ---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]