Skip to content

Commit

Permalink
Removed default attribute "ANY" for lines. Refs #15368
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarezlopez committed Sep 11, 2024
1 parent ac04e00 commit 6217e30
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/netedit/elements/GNEAttributeCarrier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9220,8 +9220,7 @@ GNEAttributeCarrier::fillPersonTripCommonAttributes(GNETagProperties& tagPropert

attrProperty = GNEAttributeProperties(SUMO_ATTR_LINES,
GNEAttributeProperties::STRING | GNEAttributeProperties::LIST | GNEAttributeProperties::DEFAULTVALUE,
TL("list of vehicle alternatives to take for the person trip"),
"ANY");
TL("list of vehicle alternatives to take for the person trip"));
tagProperties.addAttribute(attrProperty);

attrProperty = GNEAttributeProperties(SUMO_ATTR_WALKFACTOR,
Expand Down Expand Up @@ -9263,8 +9262,7 @@ GNEAttributeCarrier::fillRideCommonAttributes(GNETagProperties& tagProperties) {

attrProperty = GNEAttributeProperties(SUMO_ATTR_LINES,
GNEAttributeProperties::STRING | GNEAttributeProperties::LIST | GNEAttributeProperties::DEFAULTVALUE,
TL("list of vehicle alternatives to take for the ride"),
"ANY");
TL("list of vehicle alternatives to take for the ride"));
tagProperties.addAttribute(attrProperty);

attrProperty = GNEAttributeProperties(SUMO_ATTR_GROUP,
Expand All @@ -9281,8 +9279,7 @@ GNEAttributeCarrier::fillTransportCommonAttributes(GNETagProperties& tagProperti

attrProperty = GNEAttributeProperties(SUMO_ATTR_LINES,
GNEAttributeProperties::STRING | GNEAttributeProperties::LIST | GNEAttributeProperties::DEFAULTVALUE,
TL("list of vehicle alternatives to take for the transport"),
"ANY");
TL("list of vehicle alternatives to take for the transport"));
tagProperties.addAttribute(attrProperty);

attrProperty = GNEAttributeProperties(SUMO_ATTR_GROUP,
Expand Down

0 comments on commit 6217e30

Please sign in to comment.