summaryrefslogtreecommitdiff
path: root/src/proguard/evaluation/value/SpecificIntegerValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/evaluation/value/SpecificIntegerValue.java')
-rw-r--r--src/proguard/evaluation/value/SpecificIntegerValue.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proguard/evaluation/value/SpecificIntegerValue.java b/src/proguard/evaluation/value/SpecificIntegerValue.java
index 81f8646..352e385 100644
--- a/src/proguard/evaluation/value/SpecificIntegerValue.java
+++ b/src/proguard/evaluation/value/SpecificIntegerValue.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
@@ -208,14 +208,14 @@ abstract class SpecificIntegerValue extends IntegerValue
public IntegerValue subtract(SpecificIntegerValue other)
{
return this.equals(other) ?
- SpecificValueFactory.INTEGER_VALUE_0 :
+ ParticularValueFactory.INTEGER_VALUE_0 :
new CompositeIntegerValue(this, CompositeIntegerValue.SUBTRACT, other);
}
public IntegerValue subtractFrom(SpecificIntegerValue other)
{
return this.equals(other) ?
- SpecificValueFactory.INTEGER_VALUE_0 :
+ ParticularValueFactory.INTEGER_VALUE_0 :
new CompositeIntegerValue(other, CompositeIntegerValue.SUBTRACT, this);
}
@@ -310,7 +310,7 @@ abstract class SpecificIntegerValue extends IntegerValue
public IntegerValue xor(SpecificIntegerValue other)
{
return this.equals(other) ?
- SpecificValueFactory.INTEGER_VALUE_0 :
+ ParticularValueFactory.INTEGER_VALUE_0 :
new CompositeIntegerValue(other, CompositeIntegerValue.XOR, this);
}