Skip to content

Commit

Permalink
Removed redundant RuntimeException from method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
jackluo923 committed Oct 14, 2024
1 parent 0d88f2f commit ec1b628
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void deleteDirs() {

@Test(dataProvider = "params")
public void testStringSV(File file, ChunkCompressionType compressionType, int longestEntry, int chunkSize)
throws IOException, RuntimeException {
throws IOException {
File stringSVFile = new File(file, "testStringSV");
testWriteRead(stringSVFile, compressionType, longestEntry, chunkSize, FieldSpec.DataType.STRING, x -> x,
VarByteChunkForwardIndexWriterV4::putString, (reader, context, docId) -> reader.getString(docId, context));
Expand Down

0 comments on commit ec1b628

Please sign in to comment.