Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kt86 committed Jul 12, 2024
1 parent 355890d commit 0096d3f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class FreightLogisticsConfigGroup extends ReflectiveConfigGroup {

private String lspsFile;
static final String LSPS_FILE = "lspsFile";
private static final String CARRIERS_FILE_DESC = "Freight LogisticsServiceProvider File, according to MATSim logistics extension as part of MATSim's freight contrib.";
private static final String LSPS_FILE_DESC = "Freight LogisticsServiceProviders (LSP)s File, according to MATSim logistics extension as part of MATSim's freight contrib.";


public enum LogicOfVrp {serviceBased, shipmentBased}
Expand All @@ -57,7 +57,7 @@ public FreightLogisticsConfigGroup() {

//### CarriersFile ###
/**
* @return -- {@value #CARRIERS_FILE_DESC}
* @return -- {@value #LSPS_FILE_DESC}
*/
@StringGetter(LSPS_FILE)
public String getLspsFile() {
Expand All @@ -69,7 +69,7 @@ URL getLspsFileUrl(URL context) {
}

/**
* @param -- {@value #CARRIERS_FILE_DESC}
* @param -- {@value #LSPS_FILE_DESC}
*/
@StringSetter(LSPS_FILE)
public void setLspsFile(String lspsFile) {
Expand Down Expand Up @@ -135,7 +135,7 @@ public void setVrpLogicOfCollectionCarrier(LogicOfVrp vrpLogicOfCollectionCarrie
@Override
public Map<String, String> getComments() {
Map<String, String> map = super.getComments();
map.put(LSPS_FILE, CARRIERS_FILE_DESC);
map.put(LSPS_FILE, LSPS_FILE_DESC);
map.put(VRP_LOGIC_OF_DISTRIBUTION_CARRIER, VRP_LOGIC_OF_DISTRIBUTION_CARRIER_DESC);
map.put(VRP_LOGIC_OF_MAINRUN_CARRIER, VRP_LOGIC_OF_MAINRUN_CARRIER_DESC);
map.put(VRP_LOGIC_OF_COLLECTION_CARRIER, VRP_LOGIC_OF_COLLECTION_CARRIER_DESC);
Expand Down

0 comments on commit 0096d3f

Please sign in to comment.