Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 269042
Collapse All | Expand All

(-)src/org/eclipse/jst/jsf/context/symbol/internal/impl/IJavaTypeDescriptor2Impl.java (-6 / +9 lines)
Lines 230-243 Link Here
230
    
230
    
231
    private void copySignatures(List  list, IType[]  types)
231
    private void copySignatures(List  list, IType[]  types)
232
    {
232
    {
233
        for (int i = 0; i < types.length; i++)
233
        if (types != null)
234
        {
234
        {
235
            final IType type_ = types[i];
235
            for (int i = 0; i < types.length; i++)
236
            final String signature = TypeUtil.getSignature(type_);
237
            
238
            if (signature != null)
239
            {
236
            {
240
                list.add(signature);
237
                final IType type_ = types[i];
238
                final String signature = TypeUtil.getSignature(type_);
239
240
                if (signature != null)
241
                {
242
                    list.add(signature);
243
                }
241
            }
244
            }
242
        }
245
        }
243
    }
246
    }

Return to bug 269042