We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17292b4 commit 87b9241Copy full SHA for 87b9241
src/main/java/org/apache/ibatis/scripting/xmltags/VarDeclSqlNode.java
@@ -23,9 +23,9 @@ public class VarDeclSqlNode implements SqlNode {
23
private final String name;
24
private final String expression;
25
26
- public VarDeclSqlNode(String var, String exp) {
27
- name = var;
28
- expression = exp;
+ public VarDeclSqlNode(String name, String exp) {
+ this.name = name;
+ this.expression = exp;
29
}
30
31
@Override
0 commit comments