Skip to content

Commit

Permalink
Lower price for late bird tickets (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Janssen authored and Sille Kamoen committed May 31, 2016
1 parent 1dab475 commit 05f2498
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public enum TicketType {
EARLY_FULL("Early Bird", 37.50F, 50, LocalDateTime.of(2016, 6, 3, 0, 0)),
REGULAR_FULL("Regular", 40.00F, 0, LocalDateTime.of(2016, 5, 28, 23, 59)),
LAST_MINUTE("Last Minute", 45.00F, 0, LocalDateTime.of(2016, 6, 2, 23, 59));
LAST_MINUTE("Last Minute", 42.50F, 0, LocalDateTime.of(2016, 6, 2, 23, 59));

private final float price;
private final int limit;
Expand Down

0 comments on commit 05f2498

Please sign in to comment.