Skip to content

Commit

Permalink
More consistent variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
samuell committed Nov 26, 2009
1 parent c967b63 commit e949f45
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -136,8 +136,8 @@ public List<List<String>> reason(IRDFStore store, String queryString)
}

public IRDFStore createStore(IFile tripleStoreDirectoryPath) {
String tdbDirectoryFullPath = tripleStoreDirectoryPath.getRawLocation().toString();
return new PelletModel(tdbDirectoryFullPath);
String tripleStoreDirectoryPathFull = tripleStoreDirectoryPath.getRawLocation().toString();
return new PelletModel(tripleStoreDirectoryPathFull);
}

public IRDFStore createInMemoryStore() {
Expand Down

0 comments on commit e949f45

Please sign in to comment.