You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by da...@apache.org on 2012/09/18 13:36:31 UTC

svn commit: r1387097 - in /activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web: WebConsoleStarter.java controller/CopyMessage.java controller/MoveMessage.java controller/SendMessage.java

Author: davsclaus
Date: Tue Sep 18 11:36:31 2012
New Revision: 1387097

URL: http://svn.apache.org/viewvc?rev=1387097&view=rev
Log:
Polished

Modified:
    activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java
    activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/CopyMessage.java
    activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/MoveMessage.java
    activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/SendMessage.java

Modified: activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java?rev=1387097&r1=1387096&r2=1387097&view=diff
==============================================================================
--- activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java (original)
+++ activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java Tue Sep 18 11:36:31 2012
@@ -75,7 +75,7 @@ public class WebConsoleStarter implement
             context.stop();
             context.destroy();
         }
-        // do nothing, since the context is destoyed anyway
+        // do nothing, since the context is destroyed anyway
     }
 
 }

Modified: activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/CopyMessage.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/CopyMessage.java?rev=1387097&r1=1387096&r2=1387097&view=diff
==============================================================================
--- activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/CopyMessage.java (original)
+++ activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/CopyMessage.java Tue Sep 18 11:36:31 2012
@@ -29,9 +29,6 @@ import org.springframework.web.servlet.m
 
 /**
  * Copies a message from one to another queue
- * 
- * @author <a href="http://www.nighttale.net">Dejan Bosanac</a>
- * 
  */
 public class CopyMessage extends DestinationFacade implements Controller {
     private String messageId;

Modified: activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/MoveMessage.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/MoveMessage.java?rev=1387097&r1=1387096&r2=1387097&view=diff
==============================================================================
--- activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/MoveMessage.java (original)
+++ activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/MoveMessage.java Tue Sep 18 11:36:31 2012
@@ -29,9 +29,6 @@ import org.springframework.web.servlet.m
 
 /**
  * Moves a message from one to another queue
- * 
- * @author <a href="http://www.nighttale.net">Dejan Bosanac</a>
- * 
  */
 public class MoveMessage extends DestinationFacade implements Controller {
     private String messageId;
@@ -62,8 +59,6 @@ public class MoveMessage extends Destina
     public void setMessageId(String messageId) {
         this.messageId = messageId;
     }
-    
-    
 
     public String getDestination() {
 		return destination;

Modified: activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/SendMessage.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/SendMessage.java?rev=1387097&r1=1387096&r2=1387097&view=diff
==============================================================================
--- activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/SendMessage.java (original)
+++ activemq/trunk/activemq-web-console/src/main/java/org/apache/activemq/web/controller/SendMessage.java Tue Sep 18 11:36:31 2012
@@ -31,8 +31,6 @@ import org.springframework.web.servlet.m
 
 /**
  * Sends a message
- *
- *
  */
 public class SendMessage extends DestinationFacade implements Controller {