Skip to content

Commit

Permalink
Add proposal link to Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesj committed Feb 1, 2022
1 parent 8bee1b9 commit 5b18418
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,16 @@ class TransferMapper {

/**
* Passengers can transfer from one trip to another by staying onboard the same vehicle.
*
* @see <a href="https://github.com/google/transit/pull/303">GTFS proposal</a>
*/
private static final int STAY_SEATED = 4;

/**
* In-seat transfers are not allowed between sequential trips. The passenger must alight from the
* vehicle and re-board.
*
* @see <a href="https://github.com/google/transit/pull/303">GTFS proposal</a>
*/
private static final int NO_STAY_SEATED = 5;

Expand Down

0 comments on commit 5b18418

Please sign in to comment.