mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 23:15:24 +02:00
[358999] Deleting multiple connections takes long time
This commit is contained in:
parent
a2ddd3a6b8
commit
6e438ecfad
1 changed files with 12 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2008 IBM Corporation and others.
|
* Copyright (c) 2002, 2011 IBM Corporation and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
* contained in the reference was not found.
|
* contained in the reference was not found.
|
||||||
* David Dykstal (IBM) - [192122] extended search to look for filter pools in
|
* David Dykstal (IBM) - [192122] extended search to look for filter pools in
|
||||||
* profile during getReferencedFilterPool() rather than returning broken reference
|
* profile during getReferencedFilterPool() rather than returning broken reference
|
||||||
|
* David McKnight (IBM) - [358999] Deleting multiple connections takes long time
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.core.filters;
|
package org.eclipse.rse.internal.core.filters;
|
||||||
|
@ -195,13 +196,17 @@ public class SystemFilterPoolReference extends SystemPersistableReferencingObjec
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// bug 358999 - this was originally outside of the first if but then it created tons of unnecessary references
|
||||||
|
if (filterPool != null) {
|
||||||
|
setReferenceToFilterPool(filterPool);
|
||||||
|
setReferenceBroken(false);
|
||||||
|
} else {
|
||||||
|
setReferenceBroken(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (filterPool != null) {
|
|
||||||
setReferenceToFilterPool(filterPool);
|
|
||||||
setReferenceBroken(false);
|
|
||||||
} else {
|
|
||||||
setReferenceBroken(true);
|
|
||||||
}
|
|
||||||
return filterPool;
|
return filterPool;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue