1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-03-07 00:12:15 +00:00
parent 1ad1b35ec0
commit 341c8d3d01

View file

@ -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);
} }
} }