mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-19 00:39:58 +00:00
replace '$XINT$' tokens in location names of Sydney
This commit is contained in:
parent
6aa045c5f8
commit
f29328f889
1 changed files with 9 additions and 0 deletions
|
@ -53,4 +53,13 @@ public class SydneyProvider extends AbstractEfaProvider
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String normalizeLocationName(final String name)
|
||||||
|
{
|
||||||
|
if (name == null || name.length() == 0)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return super.normalizeLocationName(name).replace("$XINT$", "&");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue