"Vlad Ilyushchenko" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> 629 does flag unused parameters in anonymous listener classes for example


Jus't tried it and no invalid parameters where highlighted in public and
protected methods.

In this example:

  new JComponent().addMouseListener(new MouseAdapter() {
   public void mouseClicked(MouseEvent event) {
   }
   protected void mouseExited(MouseEvent e) {
   }
   private void test(String xxx, int iii) {

   }
  });

mouseClicked and mouseExited has no parameter highlighted.

Private methods (test), highlight unnused parameters, but private methods
cannot implement/override methods in superclasses/interfaces.

If this is not your case, you should post a piece of code with an example.

Carlos

--
Carlos Costa e Silva <[EMAIL PROTECTED]>


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features

Reply via email to