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
*
* Contributors:
* Andrew Ferguson (Symbian) - Initial implementation
* Andrew Ferguson (Symbian) - Initial implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.index.provider;
@ -36,10 +36,10 @@ public class ReadOnlyPDOMProviderBridge implements IIndexFragmentProvider {
List<PDOM> result = new ArrayList<PDOM>();
if(descriptions!=null) {
for(IPDOMDescriptor dsc : descriptions) {
PDOM pdom= PDOMCache.getInstance().getPDOM(dsc.getLocation(), dsc.getIndexLocationConverter());
if(pdom!=null) {
if (descriptions != null) {
for (IPDOMDescriptor dsc : descriptions) {
PDOM pdom= PDOMCache.getInstance().getPDOM(dsc.getLocation(), dsc.getIndexLocationConverter());
if (pdom != null) {
result.add(pdom);
}
}