ItEr18S04ArquitecturaServidorItEr17S04: Fixing getId method so if the id is null, a NullPointerException is not

thrown
This commit is contained in:
Javier Moran Rua 2009-07-28 13:10:15 +02:00
parent 72aa2b07d0
commit 9506bf3103

View file

@ -37,7 +37,7 @@ public abstract class OrderElement {
public abstract List<HoursGroup> getHoursGroups();
public long getId() {
public Long getId() {
return id;
}