Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Eclipse v3.5.

In previous Eclipse versions i remember if i have defined a method with a parameter and didn't use it internally a warning appears, like this :

public void myMethod( int x ) {
  // Didn't use x here so a warning appears at the x parameter.
}

But in v3.5 i do not see this warning. How can i enable it in Eclipse ?

share|improve this question

2 Answers

up vote 18 down vote accepted

See

Window / Preferences / Java / Compiler / ErrorsWarnings / Unnecessary Code / Parameter is never read

Note: If there is a valid reason for not using a parameter (e.g. it is used via reflection), you can suppress the warning by annotating the method with

@SuppressWarnings("unused")
share|improve this answer
Thanks ... I didn't see that at the beginning. – Brad Apr 26 '10 at 17:06
Cool! I was whining about the fact that Eclipse gave no warning on these just the other week, not knowing that all I had to do was turn it on. – Jay May 19 '10 at 20:12
3  
For Eclipse Juno - Window / Preferences / Java / Compiler / ErrorsWarnings / Unnecessary Code / Value of parameter is not used – jilt3d Jan 18 at 13:14

I am not sure how to activate it in Eclipse, but I am quite sure you will get such a warning using the UCDetector plugin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.