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 153933 - not nice code after Remove reduntent cast action
Summary: not nice code after Remove reduntent cast action
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Hints (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-26 13:03 UTC by Vladimir Voskresensky
Modified: 2016-07-07 07:17 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Voskresensky 2008-11-26 13:03:35 UTC
I have unnecessary case in:
int offset = ((APTToken)tok).getEndOffset();
=> after applying suggested removal of "redundant cast" a little bit ugly code occurs:
int offset = (tok).getEndOffset();

while I expect it as:
int offset = tok.getEndOffset();
Comment 1 Martin Balin 2016-07-07 07:17:16 UTC
This old bug may not be relevant anymore. If you can still reproduce it in 8.2 development builds please reopen this issue.

Thanks for your cooperation,
NetBeans IDE 8.2 Release Boss