Bugs item #2675006, was opened at 2009-03-09 07:36
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2675006&group_id=44253
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Language Levels
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Mathias Ricken (mgricken)
Assigned to: Nobody/Anonymous (nobody)
Summary: final in dj1 generates double final modifier
Initial Comment:
When the "final" modifier is used in the Intermediate level (dj1) when it is not allowed, the language level converter generates a double final modifier.
interface UnaryFun {
public Object apply(final Object arg);
}
generates
interface UnaryFun {
public Object apply(final final Object arg);
}
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2675006&group_id=44253
|