From c7257e22d0d20714acbdf9bccfbb210cd86c6018 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 15 Sep 2004 13:30:14 +0000 Subject: [PATCH] Return the charset instance variable in getCharset() rather than asking the application properties directly. --- src/helma/framework/core/Application.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 6f8ee08a..d4171bc4 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -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; } /**