I have lots of compile warnings, many of them about two unused static variables that are present in all my classes.
They are:
private static final String MODULE_ID = “$Header: $”;
private static final String COPYRIGHT = “Copyright blah blah”;
I want to filter out any warnings to do with both of these. I can easily setup a filter to remove messages to do with one, but when I add another filter and tick it, I see error messages for both.
I want to filter out warnings about MODULE_ID and COPYRIGHT
How does one do this?
Thanks – Adam