瀏覽代碼

Remove unnecessary comment

tags/1.0.5
ymlam 4 年之前
父節點
當前提交
428ac6bfe7
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. +2
    -1
      src/main/java/altk/comm/engine/Postback.java

+ 2
- 1
src/main/java/altk/comm/engine/Postback.java 查看文件

@@ -128,7 +128,7 @@ public class Postback
}
// If space in que is generated, wake up all service queues waiting for space
if (reportList.size() > 0 && threadsWaitingToPost > 0) postQueue.notifyAll();
} // synchronized()
}
if (reportList.size() > 0)
{
switch (post(reportList))
@@ -384,6 +384,7 @@ public class Postback
{
synchronized(postQueue)
{
myLogger.debug("Queueing report " + report);
postQueue.offerFirst(report);
postQueue.notify();
}


Loading…
取消
儲存