Tagged Questions
The unused tag has no wiki summary.
53
votes
8answers
10k views
Tool to identify unused css definitions
Are there any good tools to help identify unused css definitions in project? A bunch of css files were pulled in and now I'm trying to clean things up a bit.
19
votes
3answers
6k 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?
14
votes
3answers
2k 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 know if there's any ...
12
votes
2answers
135 views
Finding unused Django code to remove
I've started working on a project with loads of unused legacy code in it. I was wondering if it might be possible to use a tool like coverage in combination with a crawler (like the django-test-utils ...
8
votes
2answers
400 views
C++, find unused code and includes
Are there any no-cost tools (or direct Eclipse CDT plugins) that scan C++ code for unused functions, methods, variables, includes...?
I only found this stuff for C# and Java, but I'd like to have it ...
8
votes
1answer
451 views
Remove unused elements from XML schema using XSLT
I'm looking for a way (if it's even possible) of using an XSL transform of an XSD document to remove unused elements. This comes up a lot in my job where a company will define an XSD with absolutely ...
7
votes
3answers
501 views
Unused imports in .NET
The VB.Net IDE allows me to scan for unused references. But I also have a lot of unused imports in my application. Is there a way to scan for unused imports in all classes, or does having an unused ...
7
votes
3answers
877 views
find unused images, css rules, js script blocks
We have a fairly large asp.net website. The images, css and javascripts are property organized in the website project but as we are changing the look and feel of the website, I would like to know if ...
7
votes
5answers
6k views
Supress unused variable warning in C++ => Compiler bug or code bug?
Presently, I am using the following function template to suppress unused variable warnings:
template<typename T>
void
unused(T const &) {
/* Do nothing. */
}
However, when porting to ...
6
votes
3answers
103 views
Determine unused jars by code coverage?
I have a project with a million jars (well, a lot). They came to me by maven, and I only use a small set of functionality. For cleanness sake, I was wondering with jars I could do without.
My first ...
5
votes
2answers
222 views
How to remove dead code from Javascript
I am trying to remove unused functions from my project. Since it has thousands of
lines, this takes forever.
Code coverage tools may suggest functions that are not used in a given test case, and
...
5
votes
8answers
520 views
Finding unused (aka “dead”) code in Delphi
Are there any tools that can determine if a function/procedure/method/entire class is used?
I've seen tools that can help a knowledgeable developer track down unused fragments of code (most are for ...
5
votes
2answers
888 views
Eclipse - How to show warning for unused method parameter?
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 ) ...
5
votes
3answers
1k 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 packages there are ...
4
votes
3answers
416 views
Suppressing Erlang “unused function” warnings
I wrote an Erlang module where not all the internal functions are directly called. Instead, there's a couple functions that look something like this:
weird_func(Cmd, Args) ->
...
4
votes
5answers
437 views
How do I find out which JAR application is not using?
In our application through the process of developing a lot of JAR files has been collected. How can I filter out those, which are not used by application anymore? On some easy way?
4
votes
2answers
688 views
Find unused code in a Maven modularised project
I have to clean up an old project and general knowledge here is that the project contains lots of unused code that we could remove. That would save some headaches and make maintenance easier.
I ...
4
votes
4answers
1k views
DatagridView: Remove unused space?
I was wondering whether it is possible to remove the unused space ( the gray space ) of the DataGridView control in C#. I have to make the DataGridView display the white table only.
Any ...
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
4answers
72 views
C# Unused fields in base classes
In a prism application I have a module definition like this:
[Module(ModuleName = "TestModule", OnDemand = true)]
public class Test :
ModelBase,
IModule
{
...
moduleName = "TestModule";
...
3
votes
4answers
112 views
Should I stop using a deprecated module?
I am using django-registration v0.7 and django 1.2.4. Everything works fine but I am wondering why I'm getting this warning message each time I run the server:
...
3
votes
1answer
252 views
Unused namespace declaration appears after XSLT
After scouring the net for answers, coming up with "almost" solutions... I decided to reduce the problem to a very simple case.
Consider the following XML snippet:
<me:root ...
3
votes
5answers
265 views
Force C# Compiler to Create an Unused Object Instance
Yes exactly what I want to do :) At least for a particular class.
The problem is, I create a static instance of an object but I don not use it directly. Since I do some operations in the constructor ...
3
votes
3answers
1k views
How can you tell which columns are unused in ALL_TAB_COLS?
When you query the ALL_TAB_COLS view on Oracle 9i, it lists columns marked as UNUSED as well as the 'active' table columns. There doesn't seem to be a field that explicitly says whether a column is ...
3
votes
3answers
253 views
Getting rid of unused php files
I'm looking into removing php files that are no longer used on my site. I can use something like get_included_files to show the included files, but that would mean I would have to put it on every ...
2
votes
6answers
238 views
Oracle 11g: Index not used in “select distinct”-query
My question concerns Oracle 11g and the use of indexes in SQL queries.
In my database, there is a table that is structured as followed:
Table tab (
rowid NUMBER(11),
unique_id_string ...
2
votes
2answers
71 views
Good method to handle large amounts of unused or deprecated feature implemenations in code
Currently we are facing following Problem in our Application:
Around 40 % of the Code that is in the Application is never used. That means the Code would be there, and maybe functional, but the ...
2
votes
2answers
317 views
Unnamed parameters in C
In C, unlike C++, all parameters to a function definition must be named.
Instead of quashing "unused parameter" errors with (void)a, or openly using __attribute__((unused)), I've created the ...
2
votes
5answers
84 views
What do you call a method or library which is old and shouldn't be used anymore?
There has to be a name for this. I'm thinking degraded or unused (old isn't descriptive enough). Has anyone come up with something descriptive to call this?
2
votes
7answers
2k views
Why gcc gives error of unused variable for local variables but not for global variables?
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?.
I can understand that it ...
2
votes
3answers
209 views
How to find functions which are not executed?
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 is the way to get that ...
1
vote
2answers
202 views
Is it possible to find all unused CSS? [closed]
Possible Duplicate:
Tool to identify unused css definitions
I have quite big CSS file, that already contains style definition for classes/elements that are not used by markup any more.
It ...
1
vote
4answers
607 views
Is there a tool to find unused resources in an Android project?
I'd like to find any unused resources in my Android project - this includes strings, ids, drawables, integers etc.
Does a tool to do this currently exist (preferably for Eclipse)?
1
vote
1answer
152 views
Lightweight JVM Instrumentation to find unused code
I was wondering if there is any lightweight way I could instrument a production JVM to gather information over a period of some months to gather statistics on unused code in my code base.
Thanks a ...
1
vote
1answer
3k views
Unused Entity Issue: Expression result unused XCode 4
Have the following code and get the above error at the xs in the for statement initilization. Wasn't getting it in Xcode 3, just showed up when I installed Xcode 4 today. xs is a
int xs = 0;
for (xs; ...
1
vote
1answer
216 views
Why does GCC seem much more verbose in Ubuntu 10?
I have recently made a cp clone (for University) and I happened to discover something I had never got the chance to.
This applies at least to GCC compiling a C source.
I did the main development of ...
1
vote
4answers
1k views
Remove unused CSS on the Fly?
Having a problem at the moment that many of my pages load [using GooglePageSpeed] and seem to load a lot of unused CSS.
If I try and split the CSS - then I get the error that "too many CSS files". I ...
0
votes
1answer
24 views
How can I mark constant as used on the outside for Resharper?
I have color constants in my WPF class library. How can I mark its as used on the outside for Resharper?
0
votes
2answers
23 views
Can GCC issue an error when a specific function is not used?
I work on a large project where many functions are not used. I would like to be able to tag some of them as required, and have ld issue an error if it’s not used in the project it’s linking.
0
votes
0answers
57 views
Can I make a Java Annotation which “extends” @SuppressWarnings?
I know that it's not possible to extends Java annotations.
I've created an annotation for a private field which means that the field is likely to appear unused in the class in which it is declared. ...
0
votes
2answers
73 views
Java Bytecode decompilation — Unused Methods Present?
Say I have
private void ThisIsMySecurityMethodPleaseLookHERE() {
//security stuff
}
In my program, but that method is called nowhere in any of the actually executed code. Does it get compiled to ...
0
votes
0answers
123 views
“Unused Entity Issue, Expression result unused” warning using xCode 4.2
Installed xCode 4.2 and attempted to build when I received the "Unused Entity Issue, Expression result unused" warning. Any ideas why I would receive this warning on this line "ui8Buff [i+tot] = ...
0
votes
2answers
101 views
Unused variable & path
I keep banging my head on the keyboard... why do I get these warnings? :
Unused variable '*'
Unused variable 'path'
-(IBAction)pushGenerate {
NSString *title = nil;
NSString *path = nil;
static ...
0
votes
0answers
54 views
MyEclipse Enterprise Workbench 9.1 identify unused jars
is there an automated way to check for unused project jars in MyEclipse Enterprise Workbench 9.1? Thanks in advance
0
votes
1answer
354 views
issues with “imagePickerController: didFinishPickingMediaWithInfo:”
I keep getting an unused variable warning. I'm trying to have a modal screen appear, where a user selects a photo, and I want to use that image in an UIImageView.
Not sure if this is enough info but ...
0
votes
4answers
345 views
Tool for removing unused local variables in Fortran code
Is there some good tool for removing unused local variables from free form Fortran code?
The background is that we have a codebase which is very large, and unused warnings has been disabled for the ...
0
votes
3answers
323 views
Objective-C - Do I need to de-alloc a retained property that isn't used?
If I have a custom view controller class that I want to reuse but when used in one instance has a retained property that isn't actually used during the view's lifecycle, do I need to release it in ...
0
votes
2answers
190 views
How to check for unused members in struct?
If I declare and never use variable then gcc will give me a warning.
But if I have a struct with several members and some of those are not used, gcc will not warn about it...
Is there an option (or ...
0
votes
4answers
382 views
identifying php unused variables
I have seen the bellow question and was wondering if there is something like it for eclipse.
Also how can I make sure that this kind of errors get's thrown into my trigger error function so that I ...