Removed all variable things causing unneeded diffs.

This commit is contained in:
xivk 2021-07-02 11:19:17 +02:00
parent 49979c2072
commit 91afe119c4
4 changed files with 1 additions and 4 deletions

View file

@ -63,7 +63,6 @@ namespace AspectedRouting.IO.LuaSkeleton
"",
"Unit: " + meta.Unit,
"Created by " + meta.Author,
"Originally defined in " + meta.Filepath,
"Uses tags: " + string.Join(", ", possibleTags.Keys),
"Used parameters: " + string.Join(", ", usedParams),
"Number of combintations: " + numberOfCombinations,

View file

@ -27,7 +27,6 @@ namespace AspectedRouting.IO.itinero1
"Comfort is calculated as well, based on the parameters which are padded in",
"",
"Created by " + _profile.Author,
"Originally defined in " + _profile.Filename,
"]]",
"function " + _profile.Name + "(parameters, tags, result)",
"",

View file

@ -48,7 +48,7 @@ namespace AspectedRouting.IO.itinero1
var header = new List<string>
{
$"-- Itinero 1.0-profile, generated by AspectedRouting. Last source file change is {_profile.LastChange:s}",
$"-- Itinero 1.0-profile, generated by AspectedRouting.",
$"name = \"{_profile.Name}\"",
"normalize = false",
"vehicle_type = {" + string.Join(", ", _profile.VehicleTyps.Select(s => "\"" + s + "\"")) + "}",

View file

@ -56,7 +56,6 @@ namespace AspectedRouting.IO.itinero2
var header =
new List<string> {
$"name = \"{_profile.Name}.{_behaviourName}\"",
$"generationDate = \"{_lastChangeTime:s}\"",
$"description = \"{profileDescr} ({_profile.Description})\""
};