[jboss-svn-commits] JBL Code SVN: r31970 - labs/jbossrules/branches/factsConstraints_baunax_esteban/drools-guvnor/src/main/java/org/drools/guvnor/client/rpc.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Mar 5 16:03:45 EST 2010
Author: baunax
Date: 2010-03-05 16:03:45 -0500 (Fri, 05 Mar 2010)
New Revision: 31970
Modified:
labs/jbossrules/branches/factsConstraints_baunax_esteban/drools-guvnor/src/main/java/org/drools/guvnor/client/rpc/PushResponse.java
Log:
clean up
Modified: labs/jbossrules/branches/factsConstraints_baunax_esteban/drools-guvnor/src/main/java/org/drools/guvnor/client/rpc/PushResponse.java
===================================================================
--- labs/jbossrules/branches/factsConstraints_baunax_esteban/drools-guvnor/src/main/java/org/drools/guvnor/client/rpc/PushResponse.java 2010-03-05 20:58:23 UTC (rev 31969)
+++ labs/jbossrules/branches/factsConstraints_baunax_esteban/drools-guvnor/src/main/java/org/drools/guvnor/client/rpc/PushResponse.java 2010-03-05 21:03:45 UTC (rev 31970)
@@ -4,17 +4,19 @@
/**
* A response packet that is sent back to the client.
- * messageType is to allow filtering on the clinet, message data itself contains the message.
+ * messageType is to allow filtering on the client, message data itself contains the message.
* @author Michael Neale
*/
public class PushResponse implements IsSerializable {
- public PushResponse() {}
+ public PushResponse() {
+ this("", "");
+ }
public PushResponse(String key, String message) {
this.messageType = key;
this.message = message;
}
- public String messageType = "";
- public String message = "";
+ public String messageType;
+ public String message;
}
More information about the jboss-svn-commits
mailing list