Przeglądaj źródła

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 lat temu
rodzic
commit
b4fe1fcc95
1 zmienionych plików z 4 dodań i 0 usunięć
  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 Wyświetl plik

@@ -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("");
}
}



Ładowanie…
Anuluj
Zapisz