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 394718 | Differences between
and this patch

Collapse All | Expand All

(-)a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Expression.java (-1 / +2 lines)
Lines 1052-1059 Link Here
1052
 * or <code>null</null> if not reusable
1052
 * or <code>null</null> if not reusable
1053
 */
1053
 */
1054
public Object reusableJSRTarget() {
1054
public Object reusableJSRTarget() {
1055
	if (this.constant != Constant.NotAConstant)
1055
	if (this.constant != Constant.NotAConstant && (this.implicitConversion & TypeIds.BOXING) == 0) {
1056
		return this.constant;
1056
		return this.constant;
1057
	}
1057
	return null;
1058
	return null;
1058
}
1059
}
1059
1060

Return to bug 394718