Selaa lähdekoodia

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 vuotta sitten
vanhempi
commit
b4fe1fcc95
1 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa
  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 Näytä tiedosto

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



Ladataan…
Peruuta
Tallenna