mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
1ad1b35ec0
commit
341c8d3d01
1 changed files with 5 additions and 5 deletions
|
@ -6,7 +6,7 @@
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Andrew Ferguson (Symbian) - Initial implementation
|
* Andrew Ferguson (Symbian) - Initial implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.internal.core.index.provider;
|
package org.eclipse.cdt.internal.core.index.provider;
|
||||||
|
|
||||||
|
@ -36,10 +36,10 @@ public class ReadOnlyPDOMProviderBridge implements IIndexFragmentProvider {
|
||||||
|
|
||||||
List<PDOM> result = new ArrayList<PDOM>();
|
List<PDOM> result = new ArrayList<PDOM>();
|
||||||
|
|
||||||
if(descriptions!=null) {
|
if (descriptions != null) {
|
||||||
for(IPDOMDescriptor dsc : descriptions) {
|
for (IPDOMDescriptor dsc : descriptions) {
|
||||||
PDOM pdom= PDOMCache.getInstance().getPDOM(dsc.getLocation(), dsc.getIndexLocationConverter());
|
PDOM pdom= PDOMCache.getInstance().getPDOM(dsc.getLocation(), dsc.getIndexLocationConverter());
|
||||||
if(pdom!=null) {
|
if (pdom != null) {
|
||||||
result.add(pdom);
|
result.add(pdom);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue