Skip to content

Commit

Permalink
Correct error message in InstantColumn (see jtablesaw#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccleva committed Dec 26, 2024
1 parent 6210834 commit 0e38213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/tech/tablesaw/api/InstantColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public InstantColumn appendObj(Object obj) {
return append(timestamp.toInstant());
}
throw new IllegalArgumentException(
"Cannot append " + obj.getClass().getName() + " to DateTimeColumn");
"Cannot append " + obj.getClass().getName() + " to InstantColumn");
}

/** {@inheritDoc} */
Expand Down

0 comments on commit 0e38213

Please sign in to comment.