On my java project, I have a bunch of strings externalized on a messages.properties
file. On its respective Messages.java
file I had the same number of public static String-typed attributes, so I could access those externalized texts.
Then, I implemented a method called getString
, which receives the name of the constant as its argument and returns the wanted text. This way, there is no need to declare all the public static Strings-typed attributes inside the Messages.java
file.
But after doing this my log became filled with "NLS unused message" messages.
Do you know if there's a way to prevent those warning messages to be logged?
Thanks in advance.