mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 23:49:50 +00:00
Fix bad line labels for PACA.
This commit is contained in:
parent
7f5a8d6011
commit
d6c5d98d8a
1 changed files with 3 additions and 1 deletions
|
@ -239,7 +239,9 @@ public abstract class AbstractTsiProvider extends AbstractNetworkProvider
|
|||
if (modePrefix == null)
|
||||
throw new IllegalStateException("cannot normalize mode '" + mode + "' number '" + number + "'");
|
||||
|
||||
final StringBuilder label = new StringBuilder(modePrefix);
|
||||
final StringBuilder label = new StringBuilder();
|
||||
|
||||
label.append(modePrefix);
|
||||
|
||||
if (number != null && !number.isEmpty())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue