Bugs item #565849, was opened at 2002-06-07 09:42
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=438935&aid=565849&group_id=44253
Category: Definitions (source editor)
Group: Serious
Status: Open
Resolution: None
Priority: 5
Submitted By: Christopher Haynes (chaynes)
Assigned to: Nobody/Anonymous (nobody)
Summary: indentation error
Initial Comment:
Component[] hComponents = {
new JLabel("Age "),
ageField,
new JLabel(" Life remaining "),
lifeField,
new JLabel(" Strength "),
strengthField
// the above 5 lines are indented one too many
levels
};
// all the following lines are indented one too many
levels
Component[] vComponents = {
SwingUtil.hBox(hComponents),
panel,
new JLabel("The arrow keys move muncher. Eat
all you can!"),
new JLabel("Type N for new game and R to
redraw.")
};
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=438935&aid=565849&group_id=44253
|