Procházet zdrojové kódy

Remove unnecessary comment

tags/1.0.5
ymlam před 4 roky
rodič
revize
428ac6bfe7
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      src/main/java/altk/comm/engine/Postback.java

+ 2
- 1
src/main/java/altk/comm/engine/Postback.java Zobrazit soubor

@@ -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();
}


Načítá se…
Zrušit
Uložit