Bugs item #685124, was opened at 2003-02-12 05:10
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=685124&group_id=44253
Category: Definitions (source editor)
Group: Annoying
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Oberg (alphacoder)
Assigned to: James Hsia (jhsia)
Summary: anon inner classes in method call
Initial Comment:
check out DrJava's ugly indentation on this:
method(arg1,
new Object() {
public void doNothing(){
}
}
);
v. the more aesthetically pleasing
method(new Object() {
public void doNothing(){
}
}
);
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=685124&group_id=44253
|