Skip to content

Commit

Permalink
Merge pull request #7 from panaxging/fix/BasePlugin_wrapper
Browse files Browse the repository at this point in the history
Remove override of start and stop methods from BasePlugin
  • Loading branch information
panaxging authored Jul 5, 2024
2 parents c6e2edf + 288a0cb commit ec28edc
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions plugins/nf-kafka/src/main/nextflow/events/KafkaPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,4 @@ class KafkaPlugin extends BasePlugin {
KafkaPlugin(PluginWrapper wrapper) {
super(wrapper)
}

@Override
void start() {
super.start()
}

@Override
void stop() {
ThreadFactory.instance.shutdownExecutors()
super.stop()
}

}

0 comments on commit ec28edc

Please sign in to comment.