summaryrefslogtreecommitdiff
path: root/src/proguard/evaluation/value/ParticularDoubleValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/evaluation/value/ParticularDoubleValue.java')
-rw-r--r--src/proguard/evaluation/value/ParticularDoubleValue.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proguard/evaluation/value/ParticularDoubleValue.java b/src/proguard/evaluation/value/ParticularDoubleValue.java
index e8c5aa7..d97eb5f 100644
--- a/src/proguard/evaluation/value/ParticularDoubleValue.java
+++ b/src/proguard/evaluation/value/ParticularDoubleValue.java
@@ -2,7 +2,7 @@
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
- * Copyright (c) 2002-2013 Eric Lafortune (eric@graphics.cornell.edu)
+ * Copyright (c) 2002-2014 Eric Lafortune (eric@graphics.cornell.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
@@ -182,9 +182,9 @@ final class ParticularDoubleValue extends SpecificDoubleValue
public IntegerValue compare(ParticularDoubleValue other)
{
- return this.value < other.value ? SpecificValueFactory.INTEGER_VALUE_M1 :
- this.value == other.value ? SpecificValueFactory.INTEGER_VALUE_0 :
- SpecificValueFactory.INTEGER_VALUE_1;
+ return this.value < other.value ? ParticularValueFactory.INTEGER_VALUE_M1 :
+ this.value == other.value ? ParticularValueFactory.INTEGER_VALUE_0 :
+ ParticularValueFactory.INTEGER_VALUE_1;
}