Removes unnecessary semicolon

This commit is contained in:
Aaron Louie 2020-04-13 13:14:08 -04:00
parent e0e3cba538
commit 4dfcd0b010

View File

@ -124,7 +124,7 @@ export class ModelerComponent implements AfterViewInit {
this.xml = (event.target as FileReader).result.toString();
const diagramType = getDiagramTypeFromXml(this.xml);
this.diagramComponent.openDiagram(this.xml, diagramType);
};
}
readFile(file: File) {
// FileReader must be instantiated this way so unit test can spy on it.