Skip to content

Commit

Permalink
Fix the review content
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzy15 committed Jul 10, 2023
1 parent 3f90324 commit 96ddd40
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
import org.apache.seatunnel.connectors.seatunnel.cdc.mongodb.config.MongodbSourceOptions;

import com.google.auto.service.AutoService;
import com.sun.istack.internal.NotNull;

import javax.annotation.Nonnull;

import java.io.Serializable;
import java.util.Collections;
Expand Down Expand Up @@ -97,7 +98,7 @@ TableSource<T, SplitT, StateT> createSource(TableFactoryContext context) {
}

@Override
public Result applyTables(@NotNull TableFactoryContext context) {
public Result applyTables(@Nonnull TableFactoryContext context) {
return Result.of(context.getCatalogTables(), Collections.emptyList());
}
}

0 comments on commit 96ddd40

Please sign in to comment.