Repository: incubator-rya
Updated Branches:
  refs/heads/master 2925cf6d1 -> 5913670b6


BUG FIX remove someone's test code from example main.

Closes #97 from DLotts/master


Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/5913670b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/5913670b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/5913670b

Branch: refs/heads/master
Commit: 5913670b63baf5ef772dc5312c4a5ccb3913b6d2
Parents: 2925cf6
Author: David W. Lotts <david.lo...@parsons.com>
Authored: Wed Sep 28 10:36:07 2016 -0400
Committer: Aaron Mihalik <miha...@alum.mit.edu>
Committed: Wed Sep 28 11:51:42 2016 -0400

----------------------------------------------------------------------
 .../src/main/java/RyaDirectExample.java               | 14 --------------
 1 file changed, 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/5913670b/extras/indexingExample/src/main/java/RyaDirectExample.java
----------------------------------------------------------------------
diff --git a/extras/indexingExample/src/main/java/RyaDirectExample.java 
b/extras/indexingExample/src/main/java/RyaDirectExample.java
index acc5617..03d23f9 100644
--- a/extras/indexingExample/src/main/java/RyaDirectExample.java
+++ b/extras/indexingExample/src/main/java/RyaDirectExample.java
@@ -89,20 +89,6 @@ public class RyaDirectExample {
        private static final String AUTHS = "U";
 
        public static void main(final String[] args) throws Exception {
-               
-               File inputFile = new File("C:\\SPARTADEV\\propChain.ttl");
-               RDFParser parser = Rio.createParser(RDFFormat.TURTLE);
-               StatementCollector coll = new StatementCollector();
-               parser.setRDFHandler(coll);
-               parser.parse(new FileInputStream(inputFile), "");
-               Collection<Statement> statements = coll.getStatements();
-               System.out.println("Start");
-               for (Statement statement : statements){
-                       System.out.println(statement);
-               }
-               System.out.println("End");
-               System.exit(-1);
-               
                final Configuration conf = getConf();
                conf.setBoolean(ConfigUtils.DISPLAY_QUERY_PLAN, PRINT_QUERIES);
 

Reply via email to