Skip to content

Commit 2e64f86

Browse files
committed
last beauty fix
1 parent a2a4962 commit 2e64f86

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>fac</groupId>
88
<artifactId>fac</artifactId>
9-
<version>2.4.0</version>
9+
<version>2.4.1</version>
1010

1111
<dependencies>
1212
<dependency>

src/main/java/parser/parsetree/statements/VariableDeclaration.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ public String toString() {
113113
String out = type.getLiteral() + " " + identifier;
114114
if (initializedWithValue) {
115115
out += " = " + value;
116-
} else {
117-
out += ";";
118116
}
119117
return out + ";\n";
120118
}

0 commit comments

Comments
 (0)