Skip to content

Commit 61d7c21

Browse files
authored
MINOR fix to deleteSubjectMode API (#4005)
1 parent 7c767f8 commit 61d7c21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistry.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ Set<String> subjects(String subject, boolean lookupDeletedSubjects) throws
263263
void deleteSubjectMode(String subject) throws SchemaRegistryStoreException,
264264
OperationNotPermittedException;
265265

266-
void deleteSubjectMode(String subject, boolean recursive) throws SchemaRegistryStoreException,
267-
OperationNotPermittedException;
266+
default void deleteSubjectMode(String subject, boolean recursive)
267+
throws SchemaRegistryStoreException, OperationNotPermittedException {}
268268

269269
RuleSetHandler getRuleSetHandler();
270270

0 commit comments

Comments
 (0)