This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 138585 - unused method should test callers
Summary: unused method should test callers
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-30 09:31 UTC by pepeio
Modified: 2013-09-02 14:20 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description pepeio 2008-06-30 09:31:33 UTC
If an unused method is only used within an unused method, it should also be marked as unused.
for example:
class blah
{
 private void meh()
{
foo();
}
private void foo()
{
//whatever
}
}

only meh will be marked as unused.
Comment 1 Jiri Prox 2008-06-30 13:34:17 UTC
It's rather an enhancement