Skip to content

Commit

Permalink
remove @NotNull
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Apr 19, 2024
1 parent 9a1b67e commit d299a6d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ import org.apache.doris.regression.util.JdbcUtils
import org.apache.doris.regression.util.Hdfs
import org.apache.doris.regression.util.SuiteUtils
import org.apache.doris.regression.util.DebugPoint
import org.jetbrains.annotations.NotNull
import org.junit.jupiter.api.Assertions
import org.slf4j.Logger
import org.slf4j.LoggerFactory
Expand Down Expand Up @@ -171,7 +170,7 @@ class Suite implements GroovyInterceptable {
String threadName = null, boolean daemon = false, Closure<T> actionSupplier) {
def executorService = Executors.newFixedThreadPool(1, new ThreadFactory() {
@Override
Thread newThread(@NotNull Runnable r) {
Thread newThread(Runnable r) {
def thread = new Thread(r, name)
thread.setDaemon(daemon)
return thread
Expand Down

0 comments on commit d299a6d

Please sign in to comment.