Upgrade to java 16

This commit is contained in:
Hallvard Trætteberg
2021-08-11 15:12:25 +00:00
parent 0f7ef54ebf
commit c892ebfdec
7 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package groupid;
import java.io.IOException;
import javafx.fxml.FXML;
public class AppController {
@FXML
private void switchToSecondary() throws IOException {
}
}