[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Small fix to LongConstantValueTag.java



Hi,

There is a bug in the LongConstantValueTag class (previously submitted
by me)... please commit the following patch to fix.

Thanks!
-Archie

__________________________________________________________________________
Archie Cobbs      *        CTO, Awarix        *      http://www.awarix.com

Index: src/soot/tagkit/LongConstantValueTag.java
===================================================================
--- src/soot/tagkit/LongConstantValueTag.java	(revision 1544)
+++ src/soot/tagkit/LongConstantValueTag.java	(working copy)
@@ -43,7 +43,7 @@
 	};
     }
 
-    public double getLongValue() {
+    public long getLongValue() {
 	return value;
     }
 }