This commit is contained in:
Joshua Perry 2023-02-05 21:19:51 +00:00
parent 9f0b7225e4
commit 193512eb63
2 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,7 @@ public class EditController extends Controller {
* @param rb The resources used to localize the root object * @param rb The resources used to localize the root object
*/ */
@Override @Override
public void initialize(URL location, ResourceBundle resources) { public void initialize(URL url, ResourceBundle rb) {
Platform.runLater(() -> { Platform.runLater(() -> {
textFields = new TextField[]{playerNumber, playerName, overallScore}; textFields = new TextField[]{playerNumber, playerName, overallScore};
scoreFields = new TextField[]{scores0, scores1, scores2, scores3, scores4, scores5}; scoreFields = new TextField[]{scores0, scores1, scores2, scores3, scores4, scores5};

View File

@ -2,6 +2,7 @@ package com.r0r5chach.controllers;
/** /**
* Class that defines the controller for the main View (main.fxml) of the GUI * Class that defines the controller for the main View (main.fxml) of the GUI
* Inherits from com.r0r5chach.controllers.Controller * Inherits from com.r0r5chach.controllers.Controller
* @author r0r5chach
*/ */
public class MainController extends Controller { public class MainController extends Controller {
} }