IDEA-139945 When putting a watch on a breakpoint, Java debugger produces a boxed Integer instead of primitive int - correct fix

This commit is contained in:
Egor.Ushakov
2015-05-14 16:44:20 +03:00
parent fe1bba7752
commit ed36943182
@@ -49,7 +49,7 @@ public class MethodEvaluator implements Evaluator {
private final boolean myMustBeVararg;
// see IDEA-139945, corresponding jdk bug was fixed in 8u45
private static boolean ourUseDefaultInvoker = !SystemInfo.isJavaVersionAtLeast("1.8.0_45");
private static boolean ourUseDefaultInvoker = !SystemInfo.isJavaVersionAtLeast("1.8.0_40");
public MethodEvaluator(Evaluator objectEvaluator,
JVMName className,