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

(-)compiler/org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding.java (-2 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2009 IBM Corporation and others.
2
 * Copyright (c) 2000, 2010 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 1560-1566 Link Here
1560
	return buffer.toString();
1560
	return buffer.toString();
1561
}
1561
}
1562
public TypeVariableBinding[] typeVariables() {
1562
public TypeVariableBinding[] typeVariables() {
1563
	return this.typeVariables;
1563
	return this.typeVariables != null ? this.typeVariables : Binding.NO_TYPE_VARIABLES;
1564
}
1564
}
1565
void verifyMethods(MethodVerifier verifier) {
1565
void verifyMethods(MethodVerifier verifier) {
1566
	verifier.verify(this);
1566
	verifier.verify(this);

Return to bug 298637