4
votes
3answers
170 views
How to detect unused methods and #import in Objective-C
After working a long time on an iPhone app, I realized that my code it's quite dirty, containing several #import and methods that are not called or useful at all.
I would like to …
1
vote
6answers
187 views
What did you learn about at school that you’ve been disappointed you couldn’t use in your programming job? [closed]
It could be something that was beautifully elegant but never quite practicable in the field, or something not applicable to the industry you ended up in. In my case I was fascinate …
4
votes
5answers
355 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(Objec …
2
votes
6answers
422 views
Why gcc gives error of unused variable for local variables but not for global variables?
Hello,
I have a question regarding gcc. Why I get an error of unused variable when I define the variable locally in a function but not when the variable is global in a unique file …
2
votes
3answers
113 views
How to find functions which are not executed?
Hi,
I have a MS Visual Studio 2005 workspace, all C code. I want to find all the functions in that code, which are not called/executed when a certain test case is executed.
What …
4
votes
3answers
684 views
How to find and remove unused Delphi packages from a project
How to find and remove unused Delphi runtime packages from a project that uses packages?
I have a Delphi project that is made up of several packages, in the requires part of the p …
4
votes
2answers
1k views
Finding unused jars used in an eclipse project
Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?
