mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix PR 38239
This commit is contained in:
parent
6fa98d379b
commit
86ed1b7148
1 changed files with 2 additions and 1 deletions
|
@ -479,7 +479,8 @@ public class CModelManager implements IResourceChangeListener {
|
|||
public BinaryRunner getBinaryRunner(ICProject cProject) {
|
||||
BinaryRunner runner = null;
|
||||
synchronized(binaryRunners) {
|
||||
if (binaryRunners.get(cProject) == null) {
|
||||
runner = (BinaryRunner)binaryRunners.get(cProject);
|
||||
if (runner == null) {
|
||||
runner = new BinaryRunner(cProject);
|
||||
binaryRunners.put(cProject, runner);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue