diff options
Diffstat (limited to 'src/proguard/evaluation/value/DoubleValue.java')
-rw-r--r-- | src/proguard/evaluation/value/DoubleValue.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/proguard/evaluation/value/DoubleValue.java b/src/proguard/evaluation/value/DoubleValue.java index 48d8f11..e39ee5c 100644 --- a/src/proguard/evaluation/value/DoubleValue.java +++ b/src/proguard/evaluation/value/DoubleValue.java @@ -2,7 +2,7 @@ * ProGuard -- shrinking, optimization, obfuscation, and preverification * of Java bytecode. * - * Copyright (c) 2002-2011 Eric Lafortune (eric@graphics.cornell.edu) + * Copyright (c) 2002-2009 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 @@ -342,6 +342,11 @@ public abstract class DoubleValue extends Category2Value return this; } + public Value refresh() + { + return this; + } + public final Value generalize(Value other) { return this.generalize(other.doubleValue()); |