formatting of eclipse import tutorial authored by Björn Butzin's avatar Björn Butzin
...@@ -243,8 +243,9 @@ Depending on the received temperature, set the payload to high, medium, low or o ...@@ -243,8 +243,9 @@ Depending on the received temperature, set the payload to high, medium, low or o
off Temperature < 21 off Temperature < 21
``` ```
```java ```java
request.setPayload(medium.getBytes()); request.setPayload("medium".getBytes());
clientChannel.sendMessage(request); clientChannel.sendMessage(request);
``` ```