Skip to content

Commit c543cd0

Browse files
author
Ganeshwara Hananda
committed
Fix build issue
1 parent 61f9057 commit c543cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/Printer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private String conceptMapDisplayString(ConceptMap conceptMap, Grakn.Transaction
7777
StringBuilder sb = new StringBuilder();
7878
sb.append("{ ");
7979
for (Map.Entry<String, Concept> entry : conceptMap.map().entrySet()) {
80-
Reference.Name variable = Reference.named(entry.getKey());
80+
Reference.Name variable = Reference.name(entry.getKey());
8181
Concept concept = entry.getValue();
8282
sb.append(variable.syntax());
8383
sb.append(" ");

0 commit comments

Comments
 (0)