Skip to content

Commit ae3bf36

Browse files
committed
XML Exportation Support
1 parent 532e2a2 commit ae3bf36

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/anon/database/Table.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ public boolean exportToJSON(File jsonFile) throws IOException {
413413
}else {
414414
writer.append(NEW_LINE_SEPARATOR+SINGLE_TAB+BRACKET_CLOSE);
415415
}
416+
status = true;
416417
tempCounter++;
417418
}
418419

@@ -451,6 +452,7 @@ public boolean exportToXML(File xmlFile) throws IOException {
451452
}
452453
writer.append(SINGLE_TAB+TAG_OPENING_WITH_CLOSE+"row"+TAG_CLOSING);
453454
}
455+
status = true;
454456
}
455457
writer.append(NEW_LINE_SEPARATOR+TAG_OPENING_WITH_CLOSE+"Table"+TAG_CLOSING);
456458
}catch (Exception e){

0 commit comments

Comments
 (0)