mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 18:30:42 +00:00
remove not needed localeChange(null) calls
This commit is contained in:
parent
47d78be6db
commit
fff1b3a23f
@ -32,8 +32,6 @@ public class DrawerContent extends VerticalLayout implements LocaleChangeObserve
|
||||
ruleContainer.setId(RULE_CONTAINER_ID);
|
||||
add(heading, ruleContainer);
|
||||
setId(DRAWER_CONTENT_ID);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -47,8 +47,6 @@ public class ExampleDialog extends Dialog implements LocaleChangeObserver {
|
||||
}
|
||||
add(layout);
|
||||
setId(EXAMPLE_DIALOG_ID);
|
||||
|
||||
localeChange(null); // initialize text content
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -1,7 +1,5 @@
|
||||
package edu.kit.typicalc.view.main;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
import com.vaadin.flow.component.ItemLabelGenerator;
|
||||
import com.vaadin.flow.component.UI;
|
||||
import com.vaadin.flow.component.dependency.CssImport;
|
||||
@ -14,6 +12,8 @@ import com.vaadin.flow.component.select.Select;
|
||||
import com.vaadin.flow.i18n.LocaleChangeEvent;
|
||||
import com.vaadin.flow.i18n.LocaleChangeObserver;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* Contains information on how to use the application.
|
||||
*/
|
||||
@ -54,8 +54,6 @@ public class HelpDialog extends Dialog implements LocaleChangeObserver {
|
||||
contentLayout.setId(CONTENT_LAYOUT_ID);
|
||||
contentLayout.add(inputSyntax);
|
||||
add(headingLayout, contentLayout);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -85,8 +85,6 @@ public class InputBar extends HorizontalLayout implements LocaleChangeObserver {
|
||||
|
||||
add(infoIcon, typeAssumptions, lambdaButton, inputField, exampleButton, inferTypeButton);
|
||||
setId(INPUT_BAR_ID);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -23,8 +23,6 @@ public class NotFoundView extends VerticalLayout implements LocaleChangeObserver
|
||||
suggestion = new H2();
|
||||
add(error404, suggestion); // todo make beautiful
|
||||
setAlignItems(Alignment.CENTER);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -60,8 +60,6 @@ public class TypeAssumptionField extends HorizontalLayout implements LocaleChang
|
||||
deleteButton.setId(ASS_DELETE_BUTTON_ID);
|
||||
add(variableInputField, typeInputField, deleteButton);
|
||||
setId(ASSUMPTIONS_FIELD_ID);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -78,8 +78,6 @@ public class TypeAssumptionsArea extends Dialog implements LocaleChangeObserver
|
||||
layout.add(heading, buttons, assumptionContainer);
|
||||
layout.setPadding(false);
|
||||
add(layout);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -70,8 +70,6 @@ public class UpperBar extends HorizontalLayout implements LocaleChangeObserver {
|
||||
setId(UPPER_BAR_ID);
|
||||
getThemeList().set("dark", true); //TODO remove magic string
|
||||
setSpacing(false);
|
||||
|
||||
localeChange(null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user