예외처리
This commit is contained in:
@@ -1014,7 +1014,11 @@ public class MonitorVO implements Serializable
|
||||
**/
|
||||
synchronized private void countM02(String logSeq, long msgPssTm, long msgRcvTm, int iErrorCode){
|
||||
if(iErrorCode == 0){
|
||||
long psstmp = Long.parseLong((this.pssCnt.get(logSeq).toString()));
|
||||
Object o = this.pssCnt.get(logSeq);
|
||||
long psstmp = 0;
|
||||
if( o != null ) {
|
||||
psstmp = Long.parseLong((this.pssCnt.get(logSeq).toString()));
|
||||
}
|
||||
long psstmpIn = Long.parseLong((this.pssCntInPeriod.get(logSeq).toString()));
|
||||
psstmp++;
|
||||
psstmpIn++;
|
||||
|
||||
Reference in New Issue
Block a user