RFC: Removing unused import

2006-03-09 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, Filtering warnings in Classpath with Eclipse, I found there are 388 warnings about The import XXX is never used. I can work on these warnings and I think I can commit the result without requesting for comment on each classes because it's a

Re: RFC: Removing unused import

2006-03-09 Thread David Gilbert
Arnaud Vandyck wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, Filtering warnings in Classpath with Eclipse, I found there are 388 warnings about The import XXX is never used. I can work on these warnings and I think I can commit the result without requesting for comment on each

Re: RFC: Removing unused import

2006-03-09 Thread Keith Seitz
Arnaud Vandyck wrote: gnu.classpath.jdwp.** vm.reference.gnu.classpath.jdwp.* Doh! And here I thought I always kept track of that stuff pretty well. Don't bother with these, I'll clean them up myself. Thanks, Keith

Re: RFC: Removing unused import

2006-03-09 Thread Archie Cobbs
Arnaud Vandyck wrote: Filtering warnings in Classpath with Eclipse, I found there are 388 warnings about The import XXX is never used. I can work on these warnings and I think I can commit the result without requesting for comment on each classes because it's a minimal impact patch. But before

Re: RFC: Removing unused import

2006-03-09 Thread Tom Tromey
Arnaud == Arnaud Vandyck [EMAIL PROTECTED] writes: Arnaud Filtering warnings in Classpath with Eclipse, I found there are 388 Arnaud warnings about The import XXX is never used. I can work on these Arnaud warnings and I think I can commit the result without requesting for Arnaud comment on each

Re: RFC: Removing unused import

2006-03-09 Thread Chris Burdess
Arnaud Vandyck wrote: Filtering warnings in Classpath with Eclipse, I found there are 388 warnings about The import XXX is never used. I can work on these warnings and I think I can commit the result without requesting for comment on each classes because it's a minimal impact patch. But before

Re: RFC: Removing unused import

2006-03-09 Thread Audrius Meskauskas
Archie Cobbs wrote: It's useful.. but first verify that the tool is javadoc-aware. E.g., some imports may only be used in javadoc comments (in theory). -Archie ... and not only in the theory. In Classpath code there are a lot of imports that are only used in javadoc comments. Surely, I

Re: RFC: Removing unused import

2006-03-09 Thread David Gilbert
Audrius Meskauskas wrote: Archie Cobbs wrote: It's useful.. but first verify that the tool is javadoc-aware. E.g., some imports may only be used in javadoc comments (in theory). -Archie ... and not only in the theory. In Classpath code there are a lot of imports that are only used in