From d898fb64df2df48e51b18d53b043c58a1129d9e8 Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Tue, 4 Apr 2023 11:24:12 +0200 Subject: [PATCH] [Minor] Removed all //$NON-NLS-1$ --- .../li/strolch/plc/core/hw/i2c/RSL366OverHorterI2cTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plc-core/src/test/java/li/strolch/plc/core/hw/i2c/RSL366OverHorterI2cTest.java b/plc-core/src/test/java/li/strolch/plc/core/hw/i2c/RSL366OverHorterI2cTest.java index 73e9923..96d693d 100644 --- a/plc-core/src/test/java/li/strolch/plc/core/hw/i2c/RSL366OverHorterI2cTest.java +++ b/plc-core/src/test/java/li/strolch/plc/core/hw/i2c/RSL366OverHorterI2cTest.java @@ -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); } }