Skip to content

Commit 01d39d5

Browse files
committed
remove improper input
1 parent 1faf2d1 commit 01d39d5

File tree

1 file changed

+1
-2
lines changed
  • iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/tsfile/evolution

1 file changed

+1
-2
lines changed

iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/tsfile/evolution/EvolvedSchemaCache.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import com.github.benmanes.caffeine.cache.Cache;
66
import com.github.benmanes.caffeine.cache.Caffeine;
77
import com.github.benmanes.caffeine.cache.Weigher;
8-
import org.checkerframework.checker.nullness.qual.Nullable;
98

109
import java.util.function.Supplier;
1110

@@ -28,7 +27,7 @@ private EvolvedSchemaCache() {
2827
.build();
2928
}
3029

31-
public @Nullable EvolvedSchema computeIfAbsent(
30+
public EvolvedSchema computeIfAbsent(
3231
TsFileSet tsFileSet, Supplier<EvolvedSchema> schemaSupplier) {
3332
return cache.get(tsFileSet, k -> schemaSupplier.get());
3433
}

0 commit comments

Comments
 (0)