- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 01 Oct 2009 17:32:26 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn In directory hutz:/tmp/cvs-serv26247/src/org/w3c/unicorn Modified Files: Framework.java Log Message: changed 'languages' type to TreeMap so that languages are alphabetically sorted Index: Framework.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/Framework.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Framework.java 29 Sep 2009 16:10:10 -0000 1.15 +++ Framework.java 1 Oct 2009 17:32:24 -0000 1.16 @@ -18,6 +18,7 @@ import java.util.LinkedHashMap; import java.util.Map; import java.util.Properties; +import java.util.TreeMap; import javax.xml.namespace.NamespaceContext; import javax.xml.parsers.ParserConfigurationException; @@ -86,7 +87,7 @@ private static Hashtable<String, Properties> unicornPropertiesFiles; private static Hashtable<String, VelocityContext> languageContexts; private static Hashtable<String, Properties> languageProperties; - private static Hashtable<String, String> languages; + private static TreeMap<String, String> languages; private static VelocityEngine velocityEngine; private static String[] configFiles = { "extensions.properties", @@ -99,7 +100,7 @@ unicornPropertiesFiles = new Hashtable<String, Properties>(); languageContexts = new Hashtable<String, VelocityContext>(); languageProperties = new Hashtable<String, Properties>(); - languages = new Hashtable<String, String>(); + languages = new TreeMap<String, String>(); mapOfObserver = new LinkedHashMap<String, Observer>(); mapOfReponseParser = new LinkedHashMap<String, ResponseParser>(); }
Received on Thursday, 1 October 2009 17:32:29 UTC