Skip to content

Commit 98c6b57

Browse files
author
soheil_h_y
committed
1. Syntax error in final variable
1 parent 21ea558 commit 98c6b57

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

sources/net.sf.j2s.core/src/net/sf/j2s/core/astvisitors/ASTVariableVisitor.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ public FinalVariable(int blockLevel, String variableName, String methodScope) {
6868
public String toString() {
6969
return variableName + ":" + variableName;
7070
}
71+
72+
public int getBlockLevel() {
73+
return blockLevel;
74+
}
75+
76+
public void setToVariableName(String toVarName) {
77+
toVariableName = toVarName;
78+
}
7179
}
7280

7381
/**

0 commit comments

Comments
 (0)