// only connect transit stops that (a) are entrances, or (b) have no associated
// entrances
if (ts.isEntrance() || !ts.hasEntrances()) {
boolean wheelchairAccessible = ts.hasWheelchairEntrance();
if (!networkLinkerLibrary.connectVertexToStreets(ts, wheelchairAccessible).getResult()) {
LOG.debug(graph.addBuilderAnnotation(new StopUnlinked(ts)));
nUnlinked += 1;
}
}
}
if (nUnlinked > 0) {