@@ -59,7 +59,7 @@ public void publishMQTT(
59
59
public void publishMQTT (
60
60
@ ActionInput (name = "topic" , label = "@text/actionInputTopicLabel" , description = "@text/actionInputTopicDesc" ) @ Nullable final String topic ,
61
61
@ ActionInput (name = "value" , label = "@text/actionInputValueLabel" , description = "@text/actionInputValueDesc" ) @ Nullable final String value ,
62
- @ ActionInput (name = "retain" , label = "@text/actionInputRetainlabel " , description = "@text/actionInputRetainDesc" ) @ Nullable final Boolean retain ) {
62
+ @ ActionInput (name = "retain" , label = "@text/actionInputRetainLabel " , description = "@text/actionInputRetainDesc" ) @ Nullable final Boolean retain ) {
63
63
if (value == null ) {
64
64
logger .debug ("skipping MQTT publishing to topic '{}' due to null value." , topic );
65
65
return ;
@@ -78,7 +78,7 @@ public void publishMQTT(
78
78
public void publishMQTT (
79
79
@ ActionInput (name = "topic" , label = "@text/actionInputTopicLabel" , description = "@text/actionInputTopicDesc" ) @ Nullable final String topic ,
80
80
@ ActionInput (name = "value" , label = "@text/actionInputValueLabel" , description = "@text/actionInputValueDesc" ) final byte [] value ,
81
- @ ActionInput (name = "retain" , label = "@text/actionInputRetainlabel " , description = "@text/actionInputRetainDesc" ) @ Nullable final Boolean retain ) {
81
+ @ ActionInput (name = "retain" , label = "@text/actionInputRetainLabel " , description = "@text/actionInputRetainDesc" ) @ Nullable final Boolean retain ) {
82
82
AbstractBrokerHandler brokerHandler = handler ;
83
83
if (brokerHandler == null ) {
84
84
logger .warn ("MQTT Action service ThingHandler is null!" );
0 commit comments