Skip to content

Commit 921d313

Browse files
Fix warnings
1 parent dbcfd48 commit 921d313

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

transactionoutbox-core/src/main/java/com/gruelbox/transactionoutbox/StubPersistor.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,12 @@ public List<TransactionOutboxEntry> selectBatch(Transaction tx, int batchSize, I
4747
}
4848

4949
@Override
50-
public List<String> selectActiveTopics(Transaction tx) throws Exception {
50+
public List<String> selectActiveTopics(Transaction tx) {
5151
return List.of();
5252
}
5353

5454
@Override
55-
public Optional<TransactionOutboxEntry> nextInTopic(Transaction tx, String topic)
56-
throws Exception {
55+
public Optional<TransactionOutboxEntry> nextInTopic(Transaction tx, String topic) {
5756
return Optional.empty();
5857
}
5958

0 commit comments

Comments
 (0)