Skip to content

Commit

Permalink
Repaired parsing of grammar property keys for Generator
Browse files Browse the repository at this point in the history
  • Loading branch information
rensink committed Aug 2, 2024
1 parent 84d3fb0 commit a1c0f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/nl/utwente/groove/explore/Generator.java
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ protected void addToMap(Map m, String key, String value) {
} else if (!property.get().parser().accepts(value)) {
this.error = String.format("Incorrect value '%s' for property '%s'", value, key);
} else {
m.put(property, value);
m.put(property.get(), value);
}
}

Expand Down

0 comments on commit a1c0f5e

Please sign in to comment.