Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
csowada committed Mar 26, 2023
2 parents d9345e7 + a180685 commit e9dd4fd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file.

## Unreleased

## [1.1.11] - 2023-03-26
### Fixed
- Fix ``@Nullable`` in Utils class

## [1.1.10] - 2023-03-25
### Changed
- Updated source headers to year 2023
### Fixed
- Fixed several SonarCube issues
- Update Maven dependencies

## [1.1.9] - 2023-03-20
### Fixed
- Remove escaping (0xAA and 0xA) master data bytes and master CRC on function ``EBusCommandUtils.buildPartMasterTelegram``
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<description>eBUS core library - This library handles the communication with heating engineering via the BUS specification. This protocol is used by many heating manufacturers in Europe.</description>
<groupId>de.cs-dev.ebus</groupId>
<artifactId>ebus-core</artifactId>
<version>1.1.10</version>
<version>1.1.11</version>
<url>https://github.com/csowada/ebus</url>
<packaging>bundle</packaging>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/csdev/ebus/utils/EBusUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public static boolean isValidAddress(final byte address) {
* @param hexDumpString
* @return
*/
public static @Nullable Byte toByte(final String hexDumpString) {
public static @Nullable Byte toByte(final @Nullable String hexDumpString) {
if (StringUtils.isEmpty(hexDumpString)) {
return null;
}
Expand Down

0 comments on commit e9dd4fd

Please sign in to comment.