Skip to content

Commit f515054

Browse files
committed
Better toString.
1 parent f41d935 commit f515054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media-domain/src/main/java/nl/vpro/domain/media/ScheduleEventIdentifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public int hashCode() {
7373

7474
@Override
7575
public String toString() {
76-
return channel + ":" + start;
76+
return channel + ":" + (start != null ? start.atZone(Schedule.ZONE_ID).toLocalDateTime() : "<null>");
7777
}
7878

7979
public String asString() {

0 commit comments

Comments
 (0)