openhab-scripting 5.40.0 → 5.40.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b6537168353f3323482af5e045d5b219eb4b6bad9fc08e8e2bcc354c05b06da
4
- data.tar.gz: 3ef5da367c87c63824267faea340a9c84344062532fabde415455faf96854e93
3
+ metadata.gz: 7d127126eee03f2bf40f89d87519dc43848d7a37fc270cf74f960571b0591a6a
4
+ data.tar.gz: 9798ed530ab09d88cb3698dff764c264cda7e2e0b85b0a57685006f33513203b
5
5
  SHA512:
6
- metadata.gz: c09161c22502c0ba7857709166e52f98e160cb78b8b3694c904a2dab4b70da3216ff1c1b73f390be8485f1a2619241ae208bba867882a65a2ae9d3a0d2cbb95f
7
- data.tar.gz: b4cffd48bc9f39d9ca0a01a254372157fee86823a0c7bf561273b4084b68ef22ef49c3d95a86c46ac8356d6977170c73d2f0d1997c2f0badfe91e37f9b26ccde
6
+ metadata.gz: b9d52444551b2aa6c8a0e0cab506d2aef028e2fe59c983eaf71cac46ba01e8807f1541bc3d790501d555efb2c93f12ec9d3087c43bb72172f43220a37dcd5620
7
+ data.tar.gz: 9c4ec38935c532286b9e19a0325870dbccfbe35b6e52dc0d92a47ff30ce6729ce96afa9fdbe14ccf4b2cf6127c727d2e415fd0c3be9af95cb9c64f5a9055f116
@@ -36,7 +36,7 @@ module OpenHAB
36
36
  # {TimedCommand#command timed command} is being called.
37
37
  #
38
38
  # @attr [Item] item
39
- # @!visibility private
39
+ # The item that the timed command was sent to.
40
40
  # @attr [Types::Type, Proc] on_expire
41
41
  # @!visibility private
42
42
  # @attr [Core::Timer] timer
@@ -4,6 +4,6 @@ module OpenHAB
4
4
  module DSL
5
5
  # Version of openHAB helper libraries
6
6
  # @return [String]
7
- VERSION = "5.40.0"
7
+ VERSION = "5.40.1"
8
8
  end
9
9
  end
@@ -35,7 +35,8 @@ module OpenHAB
35
35
  def handle_event_internal(type, payload, topic, source)
36
36
  event_factory = @typed_event_factories[type]
37
37
  unless event_factory
38
- logger.debug { "Could not find an Event Factory for the event type '#{type}'." }
38
+ # We can't call the block version because this is a native java logger
39
+ logger.debug("Could not find an Event Factory for the event type '#{type}'.")
39
40
  return
40
41
  end
41
42
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openhab-scripting
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.40.0
4
+ version: 5.40.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian O'Connell