Changeset 244 for trunk/JavaHelperLib/src/de/ugoe
- Timestamp:
- 10/05/11 23:18:55 (13 years ago)
- Location:
- trunk/JavaHelperLib/src/de/ugoe/cs/util/console
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaHelperLib/src/de/ugoe/cs/util/console/CommandExecuter.java
r186 r244 150 150 String correctName = splitResult[splitResult.length - 1].replace( 151 151 ")", ""); 152 Console. traceln("Did you mean " + correctName + "?");152 Console.println("Did you mean " + correctName + "?"); 153 153 } catch (ClassNotFoundException e) { 154 154 } catch (IllegalAccessException e) { -
trunk/JavaHelperLib/src/de/ugoe/cs/util/console/defaultcommands/CMDexec.java
r175 r244 43 43 commands = (new String(buffer)).split("\n"); 44 44 for (String command : commands) { 45 Console. println(command.trim());45 Console.traceln(command.trim()); 46 46 CommandExecuter.getInstance().exec(command); 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.