Skip to content

Commit

Permalink
Adds suggested change that was missed in the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt committed Dec 4, 2024
1 parent fece5ce commit 0b072ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ private boolean valueUnavailable() {
}

private void classifyDirective() {
errorIf(getEncodingType() != IonType.SYMBOL, () -> "Ion encoding directives must start with a directive keyword.");
errorIf(getEncodingType() != IonType.SYMBOL, "Ion encoding directives must start with a directive keyword.");
String name = getSymbolText();
// TODO: Add support for `import` and `encoding` directives
if (SystemSymbols_1_1.MODULE.getText().equals(name)) {
Expand Down

0 comments on commit 0b072ee

Please sign in to comment.