Tagged Questions
The suppresswarnings tag has no wiki summary.
25
votes
8answers
27k views
What is SuppressWarnings (“unchecked”) in Java?
Sometime when looking through code, I see many methods specify an annotation:
@SuppressWarnings("unchecked")
What does this mean?
7
votes
2answers
5k views
How do I suppress Eclipse 3.5's warnings of dead code
I use a class for detecting email addresses which uses static final booleans to configure the matching behavior. Since I upgraded to Eclipse 3.5 I get warnings about dead code, since Eclipse notices ...
5
votes
2answers
246 views
Highlight when equality operator (==) is used for string comparisons in Eclipse
Is there any way I can get Eclipse to highlight the use of the == operator to test String equality? I keep mistakenly using it instead of calling .equals().
I'd really like to make that into a ...
4
votes
4answers
119 views
Eclipse: contradicting warnings
Here's the code snippet:
class MyClass {
private native void foo();
}
For the above, Eclipse (namely, 3.7.0) gives a warning
The method foo() from the type MyClass is never used locally
...
2
votes
6answers
89 views
What is the use of @SuppressWarnings
I didn't understand this feature of Java. I know it makes coding easier and sometimes looks neater, but what is the actual use of this? On contrary i feel, its better to display the warnings, as in ...
2
votes
2answers
67 views
How do I annotate with @SuppressWarnings(“unchecked”) for a single cast instead of a whole method?
It seems excessive when annotations apply to a method.
How do I use the annotation @SuppressWarnings("unchecked") for a single cast instead of a whole method?
In this example, I just finished ...
1
vote
2answers
407 views
Objective-C: “warning: property 'owner' type does not match protocol 'PieceModel' property type”
I'm getting this warning. What I'm trying to do is have a family of classes and a parallel family of protocols. The class Piece has a declaration like this:
@interface Piece : NSManagedObject ...
0
votes
1answer
19 views
SuppressWarnings “all” complaint from Eclipse
What is wrong with the SuppressWarnings annotation above the if statement? Eclipse with Sun JDK 6 provides two syntax error descriptions, both unhelpful and hard to understand, shown in comments.
...
0
votes
1answer
21 views
How do I get rid of the uncheck conversion warning as a result of using PropertiesConfiguration from apache.commons
I prefer not to use SuppressWarnings. I prefer to write code that produces no complaints. I import the apache.commons class PropertiesConfiguration.
This file was created with a text editor:
...