[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/core Channel.java,1.23,1.24
Status: Beta
Brought to you by:
huston
From: Huston F. <hu...@us...> - 2002-05-12 00:34:10
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core In directory usw-pr-cvs1:/tmp/cvs-serv2388/src/org/beepcore/beep/core Modified Files: Channel.java Log Message: fix for compiling with jdk 1.2.2 Index: Channel.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/Channel.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** Channel.java 11 May 2002 01:44:57 -0000 1.23 --- Channel.java 12 May 2002 00:34:07 -0000 1.24 *************** *** 408,415 **** // previously sent message if (frame.getMessageType() == Message.MESSAGE_TYPE_MSG) { - MessageMSG m = null; boolean notify = false; synchronized (recvMSGQueue) { if (recvMSGQueue.size() != 0) { m = (MessageMSG) recvMSGQueue.getLast(); --- 408,415 ---- // previously sent message if (frame.getMessageType() == Message.MESSAGE_TYPE_MSG) { boolean notify = false; synchronized (recvMSGQueue) { + MessageMSG m = null; if (recvMSGQueue.size() != 0) { m = (MessageMSG) recvMSGQueue.getLast(); |