Skip to content

Commit

Permalink
test: remove some @RegisterForReflection annotations to see if native…
Browse files Browse the repository at this point in the history
… will still work
  • Loading branch information
OpenSrcerer committed Apr 13, 2024
1 parent 007905b commit e530c2a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
package online.danielstefani.paddy.mqtt

import io.quarkus.runtime.annotations.RegisterForReflection

@RegisterForReflection
@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.FUNCTION)
annotation class DaemonAction(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package online.danielstefani.paddy.mqtt
import com.hivemq.client.mqtt.mqtt5.message.publish.Mqtt5Publish
import io.quarkus.logging.Log
import io.quarkus.runtime.StartupEvent
import io.quarkus.runtime.annotations.RegisterForReflection
import jakarta.enterprise.context.ApplicationScoped
import jakarta.enterprise.context.control.ActivateRequestContext
import jakarta.enterprise.event.Observes
Expand All @@ -17,7 +16,6 @@ daemon/{id}/v1/reads/ACTION
The point of this class is to extract ACTION and route it to the proper handler.
*/
@ApplicationScoped
@RegisterForReflection
class MqttTopicRouter(
private val mqttController: MqttController
) {
Expand Down

0 comments on commit e530c2a

Please sign in to comment.