- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 06 Oct 2009 08:17:27 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/util In directory hutz:/tmp/cvs-serv21790/src/org/w3c/unicorn/util Modified Files: UCNProperties.java Log Message: - load method Index: UCNProperties.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/util/UCNProperties.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- UCNProperties.java 23 Sep 2009 09:23:30 -0000 1.4 +++ UCNProperties.java 6 Oct 2009 08:17:25 -0000 1.5 @@ -1,7 +1,5 @@ package org.w3c.unicorn.util; -import java.io.IOException; -import java.io.InputStream; import java.util.Properties; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -17,12 +15,6 @@ public static Log logger = LogFactory.getLog(Framework.class); private Pattern pattern = Pattern.compile("\\$\\{[a-zA-Z_0-9]*\\}"); - - @Override - public synchronized void load(InputStream inStream) throws IOException { - super.load(inStream); - this.parse(); - } public void parse() { for(Object key : this.keySet()) {
Received on Tuesday, 6 October 2009 08:17:31 UTC