2006/unicorn/org/w3c/unicorn Framework.java,1.19,1.20

Update of /sources/public/2006/unicorn/org/w3c/unicorn
In directory hutz:/tmp/cvs-serv3421/org/w3c/unicorn

Modified Files:
	Framework.java 
Log Message:
Removed unused properties from unicorn.properties

Index: Framework.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/Framework.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- Framework.java	28 Jul 2009 10:36:31 -0000	1.19
+++ Framework.java	29 Jul 2009 09:39:05 -0000	1.20
@@ -79,7 +79,7 @@
 	static {
 		try {
 			URL aURLPropFile = new URL(Property.class.getResource("/"),
-					Property.get("REL_PATH_TO_CONF_FILES") + "extensions.properties");
+					 "org/w3c/unicorn/conf/extensions.properties");
 			
 			final Properties aProperties = new Properties();
 			aProperties.load(aURLPropFile.openStream());
@@ -102,7 +102,7 @@
 			mapOfReponseParser = new LinkedHashMap<String, ResponseParser>();
 			
 			URL aURLPropFile = new URL(Property.class.getResource("/"),
-					Property.get("REL_PATH_TO_CONF_FILES") + "responseParsers.properties");
+					"org/w3c/unicorn/conf/responseParsers.properties");
 			
 			final Properties aProperties = new Properties();
 			aProperties.load(aURLPropFile.openStream());

Received on Wednesday, 29 July 2009 09:39:24 UTC