remove redundant semi colons

This commit is contained in:
Denis-Cosmin NUTIU 2024-04-07 17:53:47 +03:00
parent 74d0bb5fe7
commit 4d6c5f9014

View file

@ -16,12 +16,12 @@ class AboutPage {
@FXML
fun openBlog() {
Desktop.getDesktop().browse(URL("https://blog.nuculabs.dev").toURI());
Desktop.getDesktop().browse(URL("https://blog.nuculabs.dev").toURI())
}
@FXML
fun openGithub() {
Desktop.getDesktop().browse(URL("https://github.com/dnutiu/ImageTagger").toURI());
Desktop.getDesktop().browse(URL("https://github.com/dnutiu/ImageTagger").toURI())
}
@FXML