- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 13 Aug 2009 17:36:23 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklist
In directory hutz:/tmp/cvs-serv16455/src/org/w3c/unicorn/tasklist
Modified Files:
Tag: dev2
RDFUnmarshallerJena.java
Log Message:
deleted previous change
Index: RDFUnmarshallerJena.java
===================================================================
RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/tasklist/Attic/RDFUnmarshallerJena.java,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- RDFUnmarshallerJena.java 13 Aug 2009 17:28:34 -0000 1.1.2.3
+++ RDFUnmarshallerJena.java 13 Aug 2009 17:36:21 -0000 1.1.2.4
@@ -4,10 +4,7 @@
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.unicorn.tasklist;
-import java.io.FileInputStream;
import java.io.IOException;
-import java.io.InputStreamReader;
-import java.net.URISyntaxException;
import java.net.URL;
import java.util.Map;
import org.apache.commons.logging.Log;
@@ -124,19 +121,7 @@
RDFUnmarshallerJena.logger.debug("URL : " + aURL + ".");
}
final Model aModel = ModelFactory.createDefaultModel();
-
- FileInputStream fis;
- try {
- fis = new FileInputStream(aURL.toURI().getPath());
- InputStreamReader isr = new InputStreamReader(fis, "UTF-8");
- aModel.read(fis, null);
- } catch (URISyntaxException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
-
-
- //aModel.read(aURL.openStream(), null);
+ aModel.read(aURL.openStream(), null);
this.aModel.add(aModel);
}
Received on Thursday, 13 August 2009 17:36:32 UTC