Return the charset instance variable in getCharset() rather than asking the

application properties directly.
This commit is contained in:
hns 2004-09-15 13:30:14 +00:00
parent 6f3f82f40a
commit c7257e22d0

View file

@ -1832,12 +1832,12 @@ public final class Application implements IPathElement, Runnable {
}
/**
* Return the name of the character encoding used by this application
*
*
* @return ...
* @return the character encoding
*/
public String getCharset() {
return props.getProperty("charset", "ISO-8859-1");
return charset;
}
/**