summaryrefslogtreecommitdiff
path: root/src/proguard/evaluation/value/SpecificLongValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/evaluation/value/SpecificLongValue.java')
-rw-r--r--src/proguard/evaluation/value/SpecificLongValue.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proguard/evaluation/value/SpecificLongValue.java b/src/proguard/evaluation/value/SpecificLongValue.java
index 15138b4..162f9fe 100644
--- a/src/proguard/evaluation/value/SpecificLongValue.java
+++ b/src/proguard/evaluation/value/SpecificLongValue.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
@@ -153,14 +153,14 @@ abstract class SpecificLongValue extends LongValue
public LongValue subtract(SpecificLongValue other)
{
return this.equals(other) ?
- SpecificValueFactory.LONG_VALUE_0 :
+ ParticularValueFactory.LONG_VALUE_0 :
new CompositeLongValue(this, CompositeLongValue.SUBTRACT, other);
}
public LongValue subtractFrom(SpecificLongValue other)
{
return this.equals(other) ?
- SpecificValueFactory.LONG_VALUE_0 :
+ ParticularValueFactory.LONG_VALUE_0 :
new CompositeLongValue(other, CompositeLongValue.SUBTRACT, this);
}
@@ -225,7 +225,7 @@ abstract class SpecificLongValue extends LongValue
public LongValue xor(SpecificLongValue other)
{
return this.equals(other) ?
- SpecificValueFactory.LONG_VALUE_0 :
+ ParticularValueFactory.LONG_VALUE_0 :
new CompositeLongValue(other, CompositeLongValue.XOR, this);
}