[Cherbot-commit] SF.net SVN: cherbot: [34] trunk/src/net/sf/cherbot
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2006-10-29 15:23:39
|
Revision: 34
http://svn.sourceforge.net/cherbot/?rev=34&view=rev
Author: christianhujer
Date: 2006-10-29 07:23:18 -0800 (Sun, 29 Oct 2006)
Log Message:
-----------
Reformatted code.
Modified Paths:
--------------
trunk/src/net/sf/cherbot/CrimeManager.java
trunk/src/net/sf/cherbot/DummyManagerProxy.java
trunk/src/net/sf/cherbot/GroupManager.java
trunk/src/net/sf/cherbot/MailManager.java
Modified: trunk/src/net/sf/cherbot/CrimeManager.java
===================================================================
--- trunk/src/net/sf/cherbot/CrimeManager.java 2006-10-29 14:10:21 UTC (rev 33)
+++ trunk/src/net/sf/cherbot/CrimeManager.java 2006-10-29 15:23:18 UTC (rev 34)
@@ -165,6 +165,7 @@
// private Set<String> criminals = new TreeSet<String>();
//
+
/**
* @param cherBot reference to CherBot.
*/
Modified: trunk/src/net/sf/cherbot/DummyManagerProxy.java
===================================================================
--- trunk/src/net/sf/cherbot/DummyManagerProxy.java 2006-10-29 14:10:21 UTC (rev 33)
+++ trunk/src/net/sf/cherbot/DummyManagerProxy.java 2006-10-29 15:23:18 UTC (rev 34)
@@ -21,7 +21,7 @@
/**
* Create a DummyManager.
- * @param cherBot CherBot to create DummyManager for
+ * @param cherBot CherBot to create DummyManager for
* @param managers Managers to register
*/
public DummyManagerProxy(final CherBot cherBot, final Manager... managers) {
Modified: trunk/src/net/sf/cherbot/GroupManager.java
===================================================================
--- trunk/src/net/sf/cherbot/GroupManager.java 2006-10-29 14:10:21 UTC (rev 33)
+++ trunk/src/net/sf/cherbot/GroupManager.java 2006-10-29 15:23:18 UTC (rev 34)
@@ -1106,7 +1106,7 @@
* Implementation for deserialization:
* Take care about newly added fields
* @param stream Stream to deserialize with
- * @throws IOException in case of I/O problems during deserialization
+ * @throws IOException in case of I/O problems during deserialization
* @throws ClassNotFoundException in case a class required for deserialization was not found
*/
private void readObject(final ObjectInputStream stream) throws IOException, ClassNotFoundException {
Modified: trunk/src/net/sf/cherbot/MailManager.java
===================================================================
--- trunk/src/net/sf/cherbot/MailManager.java 2006-10-29 14:10:21 UTC (rev 33)
+++ trunk/src/net/sf/cherbot/MailManager.java 2006-10-29 15:23:18 UTC (rev 34)
@@ -317,8 +317,8 @@
/**
* Gets a mail.
* @param n number of mail to get
+ * @return mail number <var>n</var> for the actor.
* @throws CherBotException if no such mail
- * @return mail number <var>n</var> for the actor.
*/
private Mail getMail(final int n) {
try {
@@ -365,8 +365,8 @@
/**
* Send mail.
* @param from Sender
- * @param to Receiver
- * @param msg Message body
+ * @param to Receiver
+ * @param msg Message body
*/
@Override public void mail(final String from, final String to, final String msg) {
new Mail(from, to, msg);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|