mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-12-17 10:36:07 -05:00
Rename ParkingChoices to ParkingChoice
This commit is contained in:
@ -2,7 +2,7 @@ package com.uncc.gameday.parking;
|
||||
|
||||
public class ParkingLot {
|
||||
|
||||
private ParkingChoices location;
|
||||
private ParkingChoice location;
|
||||
private int filled_pct;
|
||||
|
||||
public int getFilledPct() {
|
||||
@ -11,10 +11,10 @@ public class ParkingLot {
|
||||
public void setFilledPct(int filled_pct) {
|
||||
this.filled_pct = filled_pct;
|
||||
}
|
||||
public ParkingChoices getLocation() {
|
||||
public ParkingChoice getLocation() {
|
||||
return location;
|
||||
}
|
||||
public void setLocation(ParkingChoices location) {
|
||||
public void setLocation(ParkingChoice location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user