Explorar el Código

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

master
Johannes Oehm hace 10 años
padre
commit
b4fe1fcc95
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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 Ver fichero

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



Cargando…
Cancelar
Guardar