aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/javassist/compiler/ast/CondExpr.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/javassist/compiler/ast/CondExpr.java')
-rw-r--r--src/main/javassist/compiler/ast/CondExpr.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/javassist/compiler/ast/CondExpr.java b/src/main/javassist/compiler/ast/CondExpr.java
index 46435012..e4b6e07b 100644
--- a/src/main/javassist/compiler/ast/CondExpr.java
+++ b/src/main/javassist/compiler/ast/CondExpr.java
@@ -25,8 +25,8 @@ public class CondExpr extends ASTList {
/** default serialVersionUID */
private static final long serialVersionUID = 1L;
- public CondExpr(ASTree cond, ASTree thenp, ASTree elsep) {
- super(cond, new ASTList(thenp, new ASTList(elsep)));
+ public CondExpr(ASTree cond, ASTree thenp, ASTree elsep, int lineNumber) {
+ super(cond, new ASTList(thenp, new ASTList(elsep, lineNumber), lineNumber), lineNumber);
}
public ASTree condExpr() { return head(); }