Skip to content

Commit

Permalink
remove nullabl
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyu committed Dec 10, 2024
1 parent d16020b commit ce9cb25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public class FileStoreCommitImpl implements FileStoreCommit {
private final List<CommitCallback> commitCallbacks;
private final StatsFileHandler statsFileHandler;
private final BucketMode bucketMode;
@Nullable private long commitTimeout;
private long commitTimeout;
private final int commitMaxRetries;

@Nullable private Lock lock;
Expand Down Expand Up @@ -168,7 +168,7 @@ public FileStoreCommitImpl(
@Nullable Integer manifestReadParallelism,
List<CommitCallback> commitCallbacks,
int commitMaxRetries,
@Nullable long commitTimeout) {
long commitTimeout) {
this.fileIO = fileIO;
this.schemaManager = schemaManager;
this.tableName = tableName;
Expand Down

0 comments on commit ce9cb25

Please sign in to comment.