summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/de/fernflower/modules/decompiler/exps/AssignmentExprent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/fernflower/modules/decompiler/exps/AssignmentExprent.java b/src/de/fernflower/modules/decompiler/exps/AssignmentExprent.java
index 2aa359d..a672f6c 100644
--- a/src/de/fernflower/modules/decompiler/exps/AssignmentExprent.java
+++ b/src/de/fernflower/modules/decompiler/exps/AssignmentExprent.java
@@ -65,7 +65,7 @@ public class AssignmentExprent extends Exprent {
public VarType getExprType() {
- return right.getExprType();
+ return left.getExprType();
}