replace '$XINT$' tokens in location names of Sydney

This commit is contained in:
Andreas Schildbach 2013-04-14 12:38:46 +02:00
parent 6aa045c5f8
commit f29328f889

View file

@ -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$", "&");
}
} }