Skip to content

Commit

Permalink
oo
Browse files Browse the repository at this point in the history
  • Loading branch information
weihuagu committed May 4, 2019
1 parent 1159872 commit a2f6897
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private void startEchoTimer(){
this.echointerval=(!interval.equals("") ? interval:getDefaultEchoInterval());
this.echotimertask=returnEchoTimerTask();
this.timer=new Timer();
timer.schedule(echotimertask,1*1000,Integer.parseInt(this.echointerval)*1000);
timer.schedule(echotimertask,5*1000,Integer.parseInt(this.echointerval)*1000);
}
private TimerTask returnEchoTimerTask(){
return new TimerTask() {
Expand Down

0 comments on commit a2f6897

Please sign in to comment.