# HG changeset patch # User Tom Rodriguez # Date 1435123141 25200 # Node ID 65f36f248700eee684f57c1d8fbd1978cb75a185 # Parent 9aca6f6126ef5b82890a797c4897e7c8cbf31974 Remove double not diff -r 9aca6f6126ef -r 65f36f248700 jvmci/jdk.internal.jvmci.code/src/jdk/internal/jvmci/code/TypeCheckHints.java --- a/jvmci/jdk.internal.jvmci.code/src/jdk/internal/jvmci/code/TypeCheckHints.java Tue Jun 23 18:13:03 2015 +0200 +++ b/jvmci/jdk.internal.jvmci.code/src/jdk/internal/jvmci/code/TypeCheckHints.java Tue Jun 23 22:19:01 2015 -0700 @@ -93,7 +93,7 @@ */ public TypeCheckHints(ResolvedJavaType targetType, JavaTypeProfile profile, Assumptions assumptions, double minHintHitProbability, int maxHints) { this.profile = profile; - if (targetType != null && !!targetType.isLeaf()) { + if (targetType != null && targetType.isLeaf()) { exact = targetType; } else { if (assumptions != null) {