Merge branch 'develop' into release/2.0

This commit is contained in:
Robert von Burg 2023-04-25 13:57:33 +02:00
commit 173eed94f0
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 2 additions and 2 deletions

View File

@ -301,11 +301,11 @@ public class RSL366OverHorterI2cTest {
pos++;
}
return new String(hex, "ASCII"); //$NON-NLS-1$
return new String(hex, "ASCII");
} catch (UnsupportedEncodingException e) {
String msg = MessageFormat
.format("Something went wrong while converting to HEX: {0}", e.getMessage()); //$NON-NLS-1$
.format("Something went wrong while converting to HEX: {0}", e.getMessage());
throw new RuntimeException(msg, e);
}
}