From: <cr...@us...> - 2009-05-01 10:16:28
|
Revision: 5379 http://jnode.svn.sourceforge.net/jnode/?rev=5379&view=rev Author: crawley Date: 2009-05-01 10:16:18 +0000 (Fri, 01 May 2009) Log Message: ----------- Minor tidyups: imports and unreferenced locals. Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java trunk/core/src/classpath/vm/gnu/java/security/action/GetEnvAction.java Modified: trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2009-05-01 09:46:19 UTC (rev 5378) +++ trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2009-05-01 10:16:18 UTC (rev 5379) @@ -62,5 +62,6 @@ out.print(words[i]); } out.println(); + System.getenv(); } } Modified: trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2009-05-01 09:46:19 UTC (rev 5378) +++ trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2009-05-01 10:16:18 UTC (rev 5379) @@ -20,14 +20,10 @@ package org.jnode.command.common; import java.io.PrintWriter; -import java.text.DateFormat; -import java.text.SimpleDateFormat; -import java.util.Date; import org.jnode.shell.AbstractCommand; import org.jnode.shell.CommandShell; import org.jnode.shell.ShellException; import org.jnode.shell.ShellUtils; -import org.jnode.shell.io.CommandIO; import org.jnode.shell.syntax.AliasArgument; import org.jnode.shell.syntax.Argument; import org.jnode.shell.syntax.StringArgument; @@ -63,7 +59,6 @@ public void execute() throws Exception { PrintWriter out = getOutput().getPrintWriter(); - PrintWriter err = getError().getPrintWriter(); StringBuilder sb = new StringBuilder(Alias.getValue()); for (String arg : Args.getValues()) { Modified: trunk/core/src/classpath/vm/gnu/java/security/action/GetEnvAction.java =================================================================== --- trunk/core/src/classpath/vm/gnu/java/security/action/GetEnvAction.java 2009-05-01 09:46:19 UTC (rev 5378) +++ trunk/core/src/classpath/vm/gnu/java/security/action/GetEnvAction.java 2009-05-01 10:16:18 UTC (rev 5379) @@ -22,7 +22,6 @@ import java.security.PrivilegedAction; import java.util.Map; -import java.util.Properties; /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |