[seam-commits] Seam SVN: r11385 - branches/enterprise/JBPAPP_5_0/examples/remoting/chatroom/src/org/jboss/seam/example/remoting/chatroom.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Aug 14 11:52:11 EDT 2009
Author: manaRH
Date: 2009-08-14 11:52:11 -0400 (Fri, 14 Aug 2009)
New Revision: 11385
Modified:
branches/enterprise/JBPAPP_5_0/examples/remoting/chatroom/src/org/jboss/seam/example/remoting/chatroom/LoggerBean.java
Log:
rollbacked unwanted commit change
Modified: branches/enterprise/JBPAPP_5_0/examples/remoting/chatroom/src/org/jboss/seam/example/remoting/chatroom/LoggerBean.java
===================================================================
--- branches/enterprise/JBPAPP_5_0/examples/remoting/chatroom/src/org/jboss/seam/example/remoting/chatroom/LoggerBean.java 2009-08-14 15:43:25 UTC (rev 11384)
+++ branches/enterprise/JBPAPP_5_0/examples/remoting/chatroom/src/org/jboss/seam/example/remoting/chatroom/LoggerBean.java 2009-08-14 15:52:11 UTC (rev 11385)
@@ -25,9 +25,7 @@
{
try
{
- Object omsg = ((ObjectMessage) msg ).getObject();
- log.info("URL is **** " + Thread.currentThread().getContextClassLoader().getResource("ChatroomEvent"));
- ChatroomEvent event = (ChatroomEvent) omsg;
+ ChatroomEvent event = (ChatroomEvent) ( (ObjectMessage) msg ).getObject();
log.info( "#0: #1", event.getUser(), event.getData()==null ? event.getAction() : event.getData() );
}
catch (JMSException jmse)
More information about the seam-commits
mailing list