dlr 01/05/01 11:55:33
Modified: src/java/org/apache/velocity/runtime/configuration
Configuration.java
Log:
Corrected spelling of constant (thanks Geir).
Revision Changes Path
1.29 +6 -6
jakarta-velocity/src/java/org/apache/velocity/runtime/configuration/Configuration.java
Index: Configuration.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/configuration/Configuration.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- Configuration.java 2001/05/01 07:05:39 1.28
+++ Configuration.java 2001/05/01 18:55:33 1.29
@@ -164,7 +164,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Leon Messerschmidt</a>
* @author <a href="mailto:[EMAIL PROTECTED]>Kent Johnson</a>
- * @version $Id: Configuration.java,v 1.28 2001/05/01 07:05:39 dlr Exp $
+ * @version $Id: Configuration.java,v 1.29 2001/05/01 18:55:33 dlr Exp $
*/
public class Configuration extends Hashtable
{
@@ -276,9 +276,9 @@
class PropertiesTokenizer extends StringTokenizer
{
/**
- * The property delimeter used while parsing (a comma).
+ * The property delimiter used while parsing (a comma).
*/
- static final String DELIMETER = ",";
+ static final String DELIMITER = ",";
/**
* Constructor.
@@ -287,7 +287,7 @@
*/
public PropertiesTokenizer(String string)
{
- super(string, DELIMETER);
+ super(string, DELIMITER);
}
/**
@@ -315,7 +315,7 @@
if (token.endsWith("\\"))
{
buffer.append(token.substring(0, token.length() - 1));
- buffer.append(DELIMETER);
+ buffer.append(DELIMITER);
}
else
{
@@ -592,7 +592,7 @@
* values.
*/
if (token instanceof String &&
- ((String)token).indexOf(PropertiesTokenizer.DELIMETER) > 0)
+ ((String)token).indexOf(PropertiesTokenizer.DELIMITER) > 0)
{
PropertiesTokenizer tokenizer =
new PropertiesTokenizer((String)token);