Wrap conditional statement in block

This commit is contained in:
Tom Morris 2014-07-03 10:35:24 -04:00
parent b21cb56149
commit 655e0b0dc1

View File

@ -196,8 +196,9 @@ public class ImportingManager {
++jobIdCounter;
// Avoid negative job id's when the counter wraps around.
if (jobIdCounter < 0)
if (jobIdCounter < 0) {
jobIdCounter = 1;
}
id = jobIdCounter;
}