- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 19 Oct 2009 12:50:26 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn
In directory hutz:/tmp/cvs-serv9336/src/org/w3c/unicorn
Modified Files:
Framework.java
Log Message:
fixed log
+ renamed responseParsers.properties to responseImpl.properties
Index: Framework.java
===================================================================
RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/Framework.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- Framework.java 19 Oct 2009 12:47:05 -0000 1.24
+++ Framework.java 19 Oct 2009 12:50:24 -0000 1.25
@@ -261,7 +261,7 @@
@SuppressWarnings("unchecked")
public static void initResponseImplementations() throws InitializationFailedException {
- // Load the map of ResponseParser
+ // Load the map of Response implementations
logger.debug("-------------------------------------------------------");
logger.debug("Loading available response implementations form responseImpl.properties");
Properties aProperties = Property.getProps("responseImpl.properties");
@@ -341,7 +341,7 @@
try {
obs.setResponseType(unmarshaller.getResponseType());
} catch (UnknownParserException e) {
- logger.error("Unknown parser: " + unmarshaller.getResponseType() + ". Check observer contract or responseParsers.properties.", e);
+ logger.error("Unknown implementation: " + unmarshaller.getResponseType() + ". Check observer contract or responseImpl.properties.", e);
logger.warn("> This observer will be skiped");
continue;
}
Received on Monday, 19 October 2009 12:50:28 UTC