Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
9answers
4k views

How to suppress Java warnings for specific directories or files such as generated code

I'm using a parser generator that creates somewhat ugly code. As a result my Eclipse project has several dozen warnings emanating from generated source files. I know I can use the @SuppressWarning ...
20
votes
3answers
9k views

What is the list of valid @SuppressWarnings warning names in Java?

What is the list of valid @SuppressWarnings warning names in Java? The bit that come between the ("") in @SuppressWarnings("").
19
votes
2answers
2k views

Suppress AndroidManifest.xml minSdkVersion related warning

As recomended here http://developer.android.com/guide/practices/screens_support.html for compatibility reasons my AndroidManifest.xml contains this: <uses-sdk android:minSdkVersion="3" ...
19
votes
2answers
6k views

Java 6: Unsupported @SuppressWarnings(“rawtypes”) warning

I moved to a new machine which has the latest Sun's Java compiler and noticed some warnings in the existing Java 6 code. The Eclipse IDE, suggested that I annotate the assignment with: ...
17
votes
2answers
3k views

Suppressing “is never used” and “is never assigned to” warnings in C#

I have a HTTPSystemDefinitions.cs file in C# project which basically describes the older windows ISAPI for consumption by managed code. This includes the complete set of Structures relevant to the ...
16
votes
9answers
5k views

How do I fix Rubygems recent deprecation warning?

I have recently run updates: gem update --system gem update Now, I come with a lot of deprecation warnings each time I load a gem. For example, rails console: NOTE: ...
16
votes
9answers
12k views

Is there a way to suppress warnings in Xcode?

Is there a way to suppress warnings in Xcode? For example I am calling an undocumented method and since the method is not in the header I get a warning on compile. I know I can add it to my header to ...
15
votes
2answers
11k views

Class is a raw type. References to generic type Class<T> should be parameterized

There are lots of threads about this type of question, but I want to get a complete answer and actually understand it without 'hiding' the problem with a @SupressWarnings ! I have the following class ...
14
votes
5answers
1k views

How to suppress GCC warnings from library headers?

I have a project that uses log4cxx, boost, etc. libraries whose headers generate lots of (repetitive) warnings. Is there a way to suppress warnings from library includes (i.e. #include ...
11
votes
6answers
783 views

Why does perl warn that open my $fh, $file is missing parentheses?

It is my first day to perl, and I find this warning very confusing. Parentheses missing around "my" list at ./grep.pl line 10. It seems open FILE, $file; works fine. What is wrong with ...
11
votes
3answers
227 views

How can I temporarily disable the “return value might be undefined” warning?

I want to disable a specific warning (W1035) in my code, since I think that the compiler is wrong about this warning: function TfrmNagScreen.Run: TOption; begin if ShowModal = mrOk then Result ...
10
votes
5answers
308 views

Is there a workaround for this C4702 link-time warning?

I'm using boost::variant and am having trouble compiling in release mode. I am working in VC2010 with warning level 4 and warnings as errors. The code below compiles fine in debug mode, but in release ...
10
votes
1answer
532 views

Is there an equivalent to SuppressWarnings in Scala?

I was wondering if scala had an equivalent to java's @SuppressWarnings that can be applied to a function or whatever to ignore any deprecation warnings[1] that function emits? 1: Relevant warning in ...
8
votes
3answers
1k views

supress warning for generated c# code

I have turned on "Treat warnings as errors" for my VS project which mean that I get errors for missing documentation (nice reminder for this particular project). However, part of the code is ...
8
votes
7answers
6k views

What's the best way to suppress a runtime console warning in Java?

I am using the getResponseBody() method of the org.apache.commons.httpclient.methods.PostMethod class. However, I am always getting a message written to the console at runtime: WARNING: Going to ...
7
votes
1answer
177 views

Suppress PHP warnings for expected Oracle exceptions

I have a PHP function that calls a PL/SQL package that can throw a number of known exceptions (i.e. user exceptions) that I can catch in PHP and act on. The problem is, despite catching the exception ...
7
votes
5answers
1k views

Avoid warning 'Unreferenced Formal Parameter'

I have a super class like this: class Parent { public: virtual void Function(int param); }; void Parent::Function(int param) { std::cout << param << std::endl; } ..and a ...
6
votes
3answers
224 views

How to disable warnings for particular include files?

I wold like to disable particular warnings for all files that are included, directly or indirectly, by particular include files. For example, I want to disable the warning "you are assigning a string ...
6
votes
4answers
2k views

Can unchecked warnings be avoided when overriding a method with raw type parameters?

I am extending a class defined in a library which I cannot change: public class Parent { public void init(Map properties) { ... } } If I am defining a class 'Child' that extends Parent and I am ...
5
votes
1answer
246 views

Suppressing LINQ to SQL DBML warnings

I've generated LINQ to SQL classes from a database not under my control which has a lot of Decimal(38, 5) fields. Apparently the range of the .NET Decimal type is smaller than this, so the LINQ to SQL ...
5
votes
2answers
926 views

How to suppress warnings in external headers in Visual C++

I'm starting a new BREW project, and I'd like to compile with Warning Level 4 (/W4) to keep the application code nice and clean. The problem is that the BREW headers themselves don't compile cleanly ...
5
votes
5answers
510 views

Overriding Object.Equals() instance method in C#; now Code Analysis / FxCop warning CA2218: “should also redefine GetHashCode”. Should I suppress this in my case?

I've got a complex class in my C# project on which I want to be able to do equality tests. It is not a trivial class; it contains a variety of scalar properties as well as references to other objects ...
5
votes
2answers
324 views

Catching warnings pre-python 2.6

In Python 2.6 it is possible to suppress warnings from the warnings module by using with warnings.catch_warnings(): warnings.simplefilter("ignore") fxn() Versions of Python before 2.6 don't ...
5
votes
3answers
1k views

What is the best way to eliminate MS Visual C++ Linker warning : “warning LNK4221”?

I have a CPP source file that uses #if / #endif to compile out completely in certain builds. However, this generates the following warning. warning LNK4221: no public symbols found; archive member ...
5
votes
3answers
2k views

Eclipse - @SuppressWarnings(“javadoc”) does not work

I have my Eclipse configured to show warnings on missing javadoc comments and tags for public elements. That comes very usefull for me in order to keep my code well documented. But sometimes I have ...
5
votes
5answers
6k views

How to suppress Java compiler warnings for specific functions

We are always taught to make sure we use a break in switch statements to avoid fall-through. The Java compiler warns about these situations to help us not make trivial (but drastic) errors. I have, ...
4
votes
2answers
195 views

How can I disable warning in xcode for frameworks?

I have imported the three20 project into my project, and when I upgraded to xcode 4.2 with iOS 5, a bunch of warnings appeared in the project. I don't care about them, but they make a lot of noise, ...
4
votes
4answers
118 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 ...
4
votes
1answer
541 views

WPF Dynamic Resource: Warning Message - “The resource 'resource' could not be resolved.”

Basically, I have a UserControl that uses a DynamicResources. The application compiles and runs fine using that resource, but it's a bit annoying to see this warning message. It makes me wonder if I'm ...
4
votes
3answers
226 views

Javascript style objects in Objective-C

Background: I use a ton of NSDictionary objects in my iPhone and iPad code. I'm sick of the verbose way of getting/setting keys to these state dictionaries. So a little bit of an experiment: I just ...
4
votes
4answers
1k views

How to suppress Flash migration warnings (1090)

In Flash Professional CS4, I get "migration issue" warnings when I use mouse/keyboard input handler names such as onMouseDown, onKeyUp, etc., even though I have added event listeners for them. These ...
4
votes
5answers
2k views

How to avoid the “unused param” warning when overriding a method in java 1.4?

In this code : public class MyClass { private Object innerValue; public Object getInnerValue() { return this.innerValue; } public void setInnerValue(Object innerValue) { ...
3
votes
3answers
510 views

Suppressing Class Method Not Found Warnings in Xcode

I have a class whose methods are determined at runtime, as indicated in my question here. This works great, but now I have a bunch of warnings that look like the following littering my code: Class ...
3
votes
4answers
142 views

Is it alright to suppress/hide PHP notices?

I've suppressed notices for quite some time with no problems whatsoever but I am beginning to wonder if I'm doing the right thing. I can't seem to find any logical reason why I shouldn't just suppress ...
3
votes
2answers
129 views

Suppress particular warning in Ruby

I've seen plenty of posts providing the -W0 flag as an answer to this issue, but I don't want to suppress all warnings, just warnings of a particular value. I'm running a non-rails app (which uses ...
3
votes
4answers
350 views

Is there a gcc command line option to silence warning: passing argument n discards qualifiers from type

I'm trying to compile -Wall -Werror and its cramping my style. I'm trying to make explicit that certain arguments are constants and then passing them to non const qualifying functions inside a large ...
3
votes
1answer
825 views

Visual Studio 2010 Pro - SuppressMessage

Is the option to SupressMessage not available in VS 2010 Pro? When I right click on the warning in the warning list there is no option to suppress. I also tried it with errors and there was no ...
3
votes
2answers
563 views

Java: complete list of @SuppressWarnings(…) parameters (in Netbeans)?

Netbeans provides a lot of custom "hints", which are like warnings, only that most of them can't be suppressed (just disabled IDE-globally). But now I looking at code which uses ...
3
votes
2answers
397 views

How do I suppress warnings in Eclipse for PHP?

In Eclipse, I'm getting warnings for not having a start tag (<div>) because the start tag is in another file. How do I suppress this warning to keep it out of my "Problems" window? I know in ...
3
votes
2answers
674 views

Disabling a specific warning in a specific line in XCode

I'm writing an iPhone app against the Base 4.0 SDK, but I'm targeting OS 3.1.3 so OS 3 users can use the app. I call: [[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES]; which ...
3
votes
1answer
142 views

kill unsigned / signed comparison error

In general, I want warnings of unsigned vs signed. However, in this particular case, I want it suppressed; std::vector<Blah> blahs; for(int i = 0; i < blahs.size(); ++i) { ... I want to ...
3
votes
2answers
504 views

How to suppress a compiler warning in C# without using #pragma?

I need to suppress a specfic compiler warning in C#. Now I can do it like this: #pragma warning disable 0649 private string _field; #pragma warning restore 0649 Is there a way to do it like the ...
3
votes
2answers
1k views

How to exclude MFC code from VS2008 Code Analysis

I have a C++/CLI project that uses CWinFormsControl and CWinFormsView to create .NET controls in my MFC views. To do this I need to #include "afxwinforms.h". When I run Code Analysis on the project, ...
3
votes
4answers
3k views

How can I suppress warnings (codebase-wide) during javadoc compilation?

I'm stuck with a legacy Java codebase that has THOUSANDS of warnings when you compile it. I would love to actually fix the source of all these warnings, but unfortunately that's not an option at this ...
2
votes
3answers
80 views

How to supress a warning in PHP files for Netbeans?

I have a PHP file with a line that produces a warning in the NetBeans. How can I force the IDE to ignore that concrete warning? Notice that I don't want to disable this type of warning solution-wide. ...
2
votes
1answer
160 views

Suppress property definition warning with LLVM 3.0 on ObjC code

Since Xcode 4.2 comes with LLVM 3.0 we're finally able to use automatic synthesizeation. You can turn it on by adding the following two flags to your Other C Flags in the Apple LLVM compiler 3.0 - ...
2
votes
3answers
57 views

Avoid warning when implementing equals on class with generics

I have the following code: public abstract class A<T extends B<? extends A<T>>>{ @Override public boolean equals(Object obj) { if (this == obj) return ...
2
votes
1answer
165 views

How to specifically suppress “Comparing identical expressions” in Eclipse-Helios JDT

I tried annotating the enclosing method with @SuppressWarnings("compareIdentical") but this does not work (worse yet, the annotation results in its own Unsupported ...
2
votes
3answers
307 views

Visual Studio 2010 (C++): suppress C4706 warning temporarily

When you compile the following C++ source file in Visual Studio 2010 with warning level /W4 enabled #include <cstdio> // for printf #include <cstring> // for strcmp char str0[] = ...
2
votes
1answer
579 views

Xcode 4 and wrong “Semantic Issues” - How to deal with them?

I've started using Xcode 4, and I'm really annoyed by some of the "features" especially those semantic warnings which don't seem to be making much sense, for example: On line 640, you can see a ...

1 2 3