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 451685
Collapse All | Expand All

(-)eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java (-1 / +1 lines)
Lines 3131-3137 Link Here
3131
		case 8:
3131
		case 8:
3132
			return Integer.valueOf(token.substring(1), 8).intValue();
3132
			return Integer.valueOf(token.substring(1), 8).intValue();
3133
		case 16:
3133
		case 16:
3134
			return Integer.valueOf(token.substring(2), 16).intValue();
3134
				return Long.valueOf(token.substring(2), 16).intValue();
3135
		case 2:
3135
		case 2:
3136
			return Integer.valueOf(token.substring(2), 2).intValue();
3136
			return Integer.valueOf(token.substring(2), 2).intValue();
3137
		default:
3137
		default:

Return to bug 451685