Wrap conditional statement in block
This commit is contained in:
parent
b21cb56149
commit
655e0b0dc1
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user