Skip to content

Commit

Permalink
Minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
k0105 committed May 23, 2016
1 parent ccd60ad commit e62d7cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public abstract class DBpediaLookup extends CachedJenaLookup {
public DBpediaLookup() {
/* Replace the first URL below with http://dbpedia.org/sparql
* to use the public DBpedia SPARQL endpoint. */
super(UrlManager.lookUpUrl(UrlManager.DataBackends.DBPEDIA.ordinal()),//"http://127.0.0.1:3037/dbpedia/query",
super(UrlManager.lookUpUrl(UrlManager.DataBackends.DBPEDIA.ordinal()),
"PREFIX : <http://dbpedia.org/resource/>\n" +
"PREFIX dbpedia2: <http://dbpedia.org/property/>\n" +
"PREFIX dbpedia: <http://dbpedia.org/>\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

public class DBpediaTitles extends DBpediaLookup {
protected static final String fuzzyLookupUrl = UrlManager.lookUpUrl(UrlManager.DataBackends.LABEL1.ordinal());
protected static final String crossWikiLookupUrl = UrlManager.lookUpUrl(UrlManager.DataBackends.LABEL2.ordinal());;
protected static final String crossWikiLookupUrl = UrlManager.lookUpUrl(UrlManager.DataBackends.LABEL2.ordinal());

/** A container of enwiki article metadata.
* This must 1:1 map to label-lookup API. */
Expand Down

0 comments on commit e62d7cc

Please sign in to comment.