summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2016-10-21 16:14:50 +1100
committermd_5 <git@md-5.net>2016-10-21 16:14:50 +1100
commitdd62950521daa2e30b1b398081c6b78d226dd2c2 (patch)
tree84ec483480237d053b7d26bb1cd8615f4ae19d33
parent2ee6d669136d9feb019cdc2791c61bfb752b570a (diff)
downloadfernflower-dd62950521daa2e30b1b398081c6b78d226dd2c2.tar
fernflower-dd62950521daa2e30b1b398081c6b78d226dd2c2.tar.gz
fernflower-dd62950521daa2e30b1b398081c6b78d226dd2c2.tar.lz
fernflower-dd62950521daa2e30b1b398081c6b78d226dd2c2.tar.xz
fernflower-dd62950521daa2e30b1b398081c6b78d226dd2c2.zip
Add odouble / ofloat variable switches.
-rw-r--r--src/org/jetbrains/java/decompiler/util/VarHelper.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/org/jetbrains/java/decompiler/util/VarHelper.java b/src/org/jetbrains/java/decompiler/util/VarHelper.java
index 11827d8..34b52a9 100644
--- a/src/org/jetbrains/java/decompiler/util/VarHelper.java
+++ b/src/org/jetbrains/java/decompiler/util/VarHelper.java
@@ -53,6 +53,12 @@ public class VarHelper {
switches.put("Boolean", new String[]{
"obool"
});
+ switches.put("Double", new String[]{
+ "odouble"
+ });
+ switches.put("Float", new String[]{
+ "ofloat"
+ });
switches.put("Long", new String[]{
"olong"
});