Skip to content

Commit

Permalink
Update metafacture-biblio/src/main/java/org/metafacture/biblio/marc21…
Browse files Browse the repository at this point in the history
…/Marc21Encoder.java
  • Loading branch information
TobiasNx authored Nov 19, 2024
1 parent eab57cd commit b7d9e81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void startEntity(final String name) {

private void startField(final String name) {
if (name.length() != NAME_LENGTH) {
throw new FormatException("invalid leader entity name: " + name);
throw new FormatException("invalid entity name: " + name);
}
final char[] tag = new char[RecordFormat.TAG_LENGTH];
final char[] indicators = new char[Marc21Constants.MARC21_FORMAT.getIndicatorLength()];
Expand Down

0 comments on commit b7d9e81

Please sign in to comment.