Scripted update of if statements
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / concurrent / CachedThreadPoolExecutor.java
index e7672ac4586351f81e8e977c649c2ed3d2a47df8..7f2e77f73141c5819bea990834a86008c7b5701e 100644 (file)
@@ -164,7 +164,7 @@ public class CachedThreadPoolExecutor extends ThreadPoolExecutor {
                     task = super.poll( waitTime, TimeUnit.MILLISECONDS );
 
                     totalWaitTime -= POLL_WAIT_TIME_IN_MS;
-                    iftotalWaitTime <= 0 ) {
+                    if (totalWaitTime <= 0 ) {
                         break;
                     }