From d9f29be183ac5caf43e0c9a236c55f78cca72237 Mon Sep 17 00:00:00 2001 From: "andreas.schildbach@gmail.com" Date: Tue, 17 May 2011 16:15:44 +0000 Subject: [PATCH] map draw connections directly, rather than indirect via route git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@653 0924bc21-9374-b0fa-ee44-9ff1593b38f0 --- src/de/schildbach/pte/dto/Connection.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/de/schildbach/pte/dto/Connection.java b/src/de/schildbach/pte/dto/Connection.java index 2119ee6c..cced6ca7 100644 --- a/src/de/schildbach/pte/dto/Connection.java +++ b/src/de/schildbach/pte/dto/Connection.java @@ -75,9 +75,11 @@ public final class Connection implements Serializable public static class Part implements Serializable { + private static final long serialVersionUID = 8498461220084523265L; + public final Location departure; public final Location arrival; - public final List path; + public List path; public Part(final Location departure, final Location arrival, final List path) {