> Indeed, but we are talking about warnings that urge us to replace something > like "List" with "List<Object>" - is there no way to suppress these > warnings? > Checkstyle is very much configurable...
These warning are coming from the compiler itself, not Checkstyle. They can be turned off globally, but we do want to clean up other instances. The can be turned off locally with @SuppressWarnings or some such, but then if we ever fix the API, we'll have to find all instances by hand (plus it's a lot of work to do in the first place). I'm not sure there's a great solution. If people really want these warnings to go away and are willing to invest the work, using the local annotations is probably the way to go. Tom --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
