
org.opentripplanner.netex.issues.InterchangeWithoutConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.netex.issues;
import org.opentripplanner.graph_builder.issue.api.DataImportIssue;
import org.opentripplanner.model.transfer.ConstrainedTransfer;
public class InterchangeWithoutConstraint implements DataImportIssue {
private static final String MSG =
"Interchange dropped. The interchange have no effect on routing. Interchange: %s";
private final ConstrainedTransfer transfer;
public InterchangeWithoutConstraint(ConstrainedTransfer transfer) {
this.transfer = transfer;
}
@Override
public String getMessage() {
return String.format(MSG, transfer);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy