Return the charset instance variable in getCharset() rather than asking the
application properties directly.
This commit is contained in:
parent
6f3f82f40a
commit
c7257e22d0
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue