You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avalon.apache.org by Leif Mortenson <le...@silveregg.co.jp> on 2002/01/21 09:05:38 UTC

Remove Modifiers from constant declarations in org.apache.avalon.excalibur.system.Container

Jikes kicks out warning messages while compiling this interface because
of the extra modifiers on the constants.

Here is the diff that fixes it.

cvs -z3 diff Container.java (in directory
E:\Jakarta\jakarta-avalon-excalibur\src\scratchpad\org\apache\avalon\excalibur\system\)
Index: Container.java
===================================================================
RCS file:
/home/cvspublic/jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/system/Container.java,v
retrieving revision 1.3
diff -r1.3 Container.java
23,25c23,25
< public static final String CONTEXT_CLASSLOADER = "container.classloader";
< public static final String CONTEXT_DIRECTORY = "container.rootDir";
< public static final String WORK_DIRECTORY = "container.workDir";
---
> String CONTEXT_CLASSLOADER = "container.classloader";
> String CONTEXT_DIRECTORY = "container.rootDir";
> String WORK_DIRECTORY = "container.workDir";

Cheers,
Leif



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: Remove Modifiers from constant declarations in org.apache.avalon.excalibur.system.Container

Posted by Peter Donald <pe...@apache.org>.
On Mon, 21 Jan 2002 19:05, Leif Mortenson wrote:
> Jikes kicks out warning messages while compiling this interface because
> of the extra modifiers on the constants.

Patch applied - thanks!

-- 
Cheers,

Pete

---------------------------------------------------
"It is easy to dodge our responsibilities, but we 
cannot dodge the consequences of dodging our 
responsibilities." -Josiah Stamp 
---------------------------------------------------

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>