fixed merge problem.

This commit is contained in:
schrom01 2022-05-13 22:53:49 +02:00
parent bbaf70f9af
commit 7114097601
1 changed files with 2 additions and 2 deletions

View File

@ -34,12 +34,12 @@ public class MainWindowController extends FXController {
* Method changes the language Setting to german
*/
@FXML
void changeLangToGerman(ActionEvent event) {
void changeLangToGerman() {
getLanguageConfigurator().changeLanguage(LanguageConfigurator.Language.GERMAN);
}
@FXML
void changeLangToEnglish(ActionEvent event) {
void changeLangToEnglish() {
getLanguageConfigurator().changeLanguage(LanguageConfigurator.Language.ENGLISH);
}