[Cherbot-commit] SF.net SVN: cherbot: [56] trunk/src/net/sf/cherbot/CherBot.java
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-06-09 17:20:44
|
Revision: 56
http://svn.sourceforge.net/cherbot/?rev=56&view=rev
Author: christianhujer
Date: 2007-06-09 10:20:42 -0700 (Sat, 09 Jun 2007)
Log Message:
-----------
Removed unused field that shouldn't be there anyway.
Modified Paths:
--------------
trunk/src/net/sf/cherbot/CherBot.java
Modified: trunk/src/net/sf/cherbot/CherBot.java
===================================================================
--- trunk/src/net/sf/cherbot/CherBot.java 2007-06-09 17:19:23 UTC (rev 55)
+++ trunk/src/net/sf/cherbot/CherBot.java 2007-06-09 17:20:42 UTC (rev 56)
@@ -6,12 +6,11 @@
package net.sf.cherbot;
-import net.sf.japi.io.args.BasicCommand;
+import java.io.IOException;
+import java.util.List;
import net.sf.japi.io.args.ArgParser;
+import net.sf.japi.io.args.BasicCommand;
import org.jetbrains.annotations.NotNull;
-import java.util.List;
-import java.io.OutputStream;
-import java.io.IOException;
/** Main class of Cherbot.
* @author <a href="mailto:ch...@ri...">Christian Hujer</a>
@@ -25,8 +24,6 @@
ArgParser.simpleParseAndRun(new CherBot(), args);
}
- private OutputStream out;
-
/** {@inheritDoc} */
public int run(@NotNull final List<String> strings) throws Exception {
return 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|