Skip to content

Commit

Permalink
Fix throws.
Browse files Browse the repository at this point in the history
  • Loading branch information
gianm committed Jul 30, 2024
1 parent 193be9e commit f9f9321
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class ChannelStageOutputReaderTest extends InitializedNullHandlingTest
private List<Frame> frameList;

@Before
public void setUp() throws Exception
public void setUp()
{
final IncrementalIndex index = TestIndex.getIncrementalTestIndex();
final IncrementalIndexStorageAdapter adapter = new IncrementalIndexStorageAdapter(index);
Expand All @@ -81,7 +81,7 @@ public void setUp() throws Exception
}

@After
public void tearDown() throws Exception
public void tearDown()
{
reader.close();
}
Expand Down

0 comments on commit f9f9321

Please sign in to comment.