Skip to content

Commit

Permalink
Changed validation method to one that throws IAE
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmarion committed Feb 20, 2025
1 parent e821659 commit 0890d7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public static class ServerColumnFamily {
public static final ColumnFQ DIRECTORY_COLUMN = new ColumnFQ(NAME, new Text(DIRECTORY_QUAL)) {
@Override
public void put(Mutation m, Value v) {
isValidDirCol(v.toString());
validateDirCol(v.toString());
super.put(m, v);
}
};
Expand Down

0 comments on commit 0890d7e

Please sign in to comment.