From: <ls...@us...> - 2008-08-19 10:40:34
|
Revision: 4465 http://jnode.svn.sourceforge.net/jnode/?rev=4465&view=rev Author: lsantha Date: 2008-08-19 10:40:30 +0000 (Tue, 19 Aug 2008) Log Message: ----------- Code style fixes. Modified Paths: -------------- trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsole.java trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java trunk/shell/src/shell/org/jnode/shell/help/def/DefaultHelp.java Modified: trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsole.java =================================================================== --- trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsole.java 2008-08-19 07:45:28 UTC (rev 4464) +++ trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsole.java 2008-08-19 10:40:30 UTC (rev 4465) @@ -464,7 +464,7 @@ } private final void ensureVisible(TextScreen scr, int row) { - if(scr instanceof ScrollableTextScreen) { + if (scr instanceof ScrollableTextScreen) { ((ScrollableTextScreen) scr).ensureVisible(row, isFocused()); } } Modified: trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java 2008-08-19 07:45:28 UTC (rev 4464) +++ trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java 2008-08-19 10:40:30 UTC (rev 4465) @@ -98,7 +98,7 @@ public void waitFor() { try { join(); - } catch (InterruptedException ie){ + } catch (InterruptedException ie) { //ignore } } Modified: trunk/shell/src/shell/org/jnode/shell/help/def/DefaultHelp.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/help/def/DefaultHelp.java 2008-08-19 07:45:28 UTC (rev 4464) +++ trunk/shell/src/shell/org/jnode/shell/help/def/DefaultHelp.java 2008-08-19 10:40:30 UTC (rev 4465) @@ -163,8 +163,7 @@ @Override public void describeArgument(org.jnode.shell.syntax.Argument<?> arg, PrintStream out) { format(out, new Cell[]{new Cell(4, 16), new Cell(2, NOMINAL_WIDTH - 22)}, - new String[]{arg.getLabel(), - "(" + arg.getTypeDescription() + ") " + arg.getDescription()}); + new String[]{arg.getLabel(), "(" + arg.getTypeDescription() + ") " + arg.getDescription()}); } protected void format(PrintStream out, Cell[] cells, String[] texts) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |