Skip to content

Commit

Permalink
TINKERPOP-1878 Minor code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spmallette committed Aug 13, 2018
1 parent e22665b commit f874849
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Prefixes {
static {
final StringBuilder builder = new StringBuilder();
for (final String prefix : PREFIXES) {
builder.append("PREFIX ").append(prefix.substring(0, 1)).append(": <").append(getURI(prefix)).
builder.append("PREFIX ").append(prefix, 0, 1).append(": <").append(getURI(prefix)).
append(">").append(System.lineSeparator());
}
PREFIX_DEFINITIONS = builder.toString();
Expand Down

0 comments on commit f874849

Please sign in to comment.