donaldp 02/03/19 03:19:42
Modified: cli/src/java/org/apache/avalon/excalibur/cli Token.java
Log:
Package level access class should not have public methods because they can
never be accessed outside package anyway? So may aswell go back to package
level access
Revision Changes Path
1.7 +3 -3
jakarta-avalon-excalibur/cli/src/java/org/apache/avalon/excalibur/cli/Token.java
Index: Token.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/cli/src/java/org/apache/avalon/excalibur/cli/Token.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Token.java 19 Mar 2002 11:18:26 -0000 1.6
+++ Token.java 19 Mar 2002 11:19:42 -0000 1.7
@@ -27,7 +27,7 @@
/**
* New Token object with a type and value
*/
- public Token( final int type, final String value )
+ Token( final int type, final String value )
{
m_type = type;
m_value = value;
@@ -36,7 +36,7 @@
/**
* Get the value of the token
*/
- public final String getValue()
+ final String getValue()
{
return m_value;
}
@@ -44,7 +44,7 @@
/**
* Get the type of the token
*/
- public final int getType()
+ final int getType()
{
return m_type;
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>