[Minor] Removed all //$NON-NLS-1$

This commit is contained in:
Robert von Burg 2023-04-04 11:24:12 +02:00
parent 89a3436505
commit d898fb64df
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++; pos++;
} }
return new String(hex, "ASCII"); //$NON-NLS-1$ return new String(hex, "ASCII");
} catch (UnsupportedEncodingException e) { } catch (UnsupportedEncodingException e) {
String msg = MessageFormat 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); throw new RuntimeException(msg, e);
} }
} }