Skip to content

Commit 87b9241

Browse files
committed
Improve readability
1 parent 17292b4 commit 87b9241

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/apache/ibatis/scripting/xmltags/VarDeclSqlNode.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ public class VarDeclSqlNode implements SqlNode {
2323
private final String name;
2424
private final String expression;
2525

26-
public VarDeclSqlNode(String var, String exp) {
27-
name = var;
28-
expression = exp;
26+
public VarDeclSqlNode(String name, String exp) {
27+
this.name = name;
28+
this.expression = exp;
2929
}
3030

3131
@Override

0 commit comments

Comments
 (0)