Просмотр исходного кода

Bug gefixt für den Fall das die Stationshistorie neu erstellt wird wird nicht die Versionsinfo von der letzten Auswahl angezeigt

master
Johannes Oehm 10 лет назад
Родитель
Сommit
b4fe1fcc95
1 измененных файлов: 4 добавлений и 0 удалений
  1. +4
    -0
      src/main/java/de/uniluebeck/mi/projmi6/controller/StationsHistorieController.java

+ 4
- 0
src/main/java/de/uniluebeck/mi/projmi6/controller/StationsHistorieController.java Просмотреть файл

@@ -334,10 +334,14 @@ public class StationsHistorieController {
statHistCreator.setText(Integer.toString(stationsHistorie.getErsteller()));
if (stationsHistorie.getErstellDatumZeit() != null) {
statHistCreateTime.setText(stationsHistorie.getErstellDatumZeit().toString());
}else{
statHistCreateTime.setText("");
}
statHistEditor.setText(Integer.toString(stationsHistorie.getBearbeiter()));
if (stationsHistorie.getBearbeitetDatumZeit() != null) {
statHistEditTime.setText(stationsHistorie.getBearbeitetDatumZeit().toString());
}else{
statHistEditTime.setText("");
}
}



Загрузка…
Отмена
Сохранить