View | Details | Raw Unified | Return to bug 140449
Collapse All | Expand All

(-)src/org/eclipse/ui/internal/intro/impl/model/IntroModelRoot.java (-1 / +1 lines)
Lines 847-853 Link Here
847
    }
847
    }
848
    
848
    
849
    public String resolveVariables(String text) {
849
    public String resolveVariables(String text) {
850
    	//if (configurer==null) return text;
850
    	if (text==null) return null;
851
    	if (text.indexOf('$')== -1)
851
    	if (text.indexOf('$')== -1)
852
    		return text;
852
    		return text;
853
    	// resolve
853
    	// resolve

Return to bug 140449