mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-29 12:34:21 +02:00
[onewire] Deprecations (#20828)
Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
+3
-3
@@ -138,7 +138,7 @@ public class OwserverBridgeHandler extends BaseBridgeHandler {
|
||||
long now = System.currentTimeMillis();
|
||||
if (!refreshable) {
|
||||
logger.trace("refresh requested by thread ID {} denied, as not refresheable",
|
||||
Thread.currentThread().getId());
|
||||
Thread.currentThread().threadId());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -146,8 +146,8 @@ public class OwserverBridgeHandler extends BaseBridgeHandler {
|
||||
List<Thing> thingList = getThing().getThings();
|
||||
int thingCount = thingList.size();
|
||||
Iterator<Thing> childListIterator = thingList.iterator();
|
||||
logger.trace("refreshTask with thread ID {} starts at {}, {} childs", Thread.currentThread().getId(), now,
|
||||
thingCount);
|
||||
logger.trace("refreshTask with thread ID {} starts at {}, {} childs", Thread.currentThread().threadId(),
|
||||
now, thingCount);
|
||||
while (childListIterator.hasNext() && refreshable) {
|
||||
Thing owThing = childListIterator.next();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user