changeset 22076:65f36f248700

Remove double not
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Tue, 23 Jun 2015 22:19:01 -0700
parents 9aca6f6126ef
children c105214b91d5
files jvmci/jdk.internal.jvmci.code/src/jdk/internal/jvmci/code/TypeCheckHints.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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) {