build on JDK 1.3

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@600566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2007-12-03 15:28:25 +00:00
parent 673385b43d
commit 0d575a6952
1 changed files with 2 additions and 1 deletions

View File

@ -353,7 +353,8 @@ public ExtendedMessageFormat(String pattern, Locale locale,
* our (final) applyPattern implementation, and re-call at the end of
* this constructor.
*/
super(pattern, locale);
super(pattern);
setLocale(locale);
setMetaFormat(metaFormat);
applyPattern(pattern);
}