Skip to content

Commit

Permalink
Fix Compiler warnings in V3 branch
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Schlipp <[email protected]>
  • Loading branch information
CSchlipp committed Dec 29, 2020
1 parent 9a0ff0d commit 1d81981
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class WlanThermoMiniHandler extends BaseThingHandler {
private final ScheduledExecutorService scheduler = ThreadPoolManager
.getScheduledPool(WlanThermoBindingConstants.WLANTHERMO_THREAD_POOL);
private final Gson gson = new Gson();
private App app = new App();
private @Nullable App app = new App();

public WlanThermoMiniHandler(Thing thing, HttpClient httpClient) {
super(thing);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public class WlanThermoNanoV1Handler extends BaseThingHandler {
private final ScheduledExecutorService scheduler = ThreadPoolManager
.getScheduledPool(WlanThermoBindingConstants.WLANTHERMO_THREAD_POOL);
private final Gson gson = new Gson();
private Data data = new Data();
private Settings settings = new Settings();
private @Nullable Data data = new Data();
private @Nullable Settings settings = new Settings();

public WlanThermoNanoV1Handler(Thing thing, HttpClient httpClient) {
super(thing);
Expand Down

0 comments on commit 1d81981

Please sign in to comment.