Skip to content

Commit

Permalink
Improve code style
Browse files Browse the repository at this point in the history
- Remove overrides identical to super class
  • Loading branch information
spannm committed Feb 16, 2024
1 parent 77c6026 commit 96873d6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
9 changes: 0 additions & 9 deletions src/main/java/io/github/spannm/jackcess/impl/JetFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -1593,10 +1593,6 @@ public boolean isSupportedDataType(DataType type) {
return !V12_UNSUPP_TYPES.contains(type);
}

@Override
public boolean isSupportedCalculatedDataType(DataType type) {
return false;
}
}

private static class Jet14Format extends Jet12Format {
Expand All @@ -1613,11 +1609,6 @@ protected ColumnImpl.SortOrder defineDefaultSortOrder() {
return ColumnImpl.GENERAL_SORT_ORDER;
}

@Override
protected byte[] definePropMapType() {
return PROPERTY_MAP_TYPES[0];
}

@Override
protected Map<String, Database.FileFormat> getPossibleFileFormats() {
return PossibleFileFormats.POSSIBLE_VERSION_14;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,10 +362,6 @@ private static void setTableProp(Table t, String propName,
}

private static final Function FOO = new FunctionSupport.Func0("FooFunc") {
@Override
public boolean isPure() {
return false;
}

@Override
protected Value eval0(EvalContext ctx) {
Expand Down

0 comments on commit 96873d6

Please sign in to comment.