Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@23898 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Dec 22, 2014
1 parent 07dc484 commit afff8b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Compiler/Template/CodegenFMU.tpl
Expand Up @@ -262,7 +262,7 @@ template StartString2(SimVar simvar)
::=
match simvar
case SIMVAR(initialValue = initialValue) then
match initialValue
match initialValue
case SOME(e as ICONST(__)) then ' start="<%initValXml(e)%>"'
case SOME(e as RCONST(__)) then ' start="<%initValXml(e)%>"'
case SOME(e as SCONST(__)) then ' start="<%initValXml(e)%>"'
Expand All @@ -275,7 +275,7 @@ template MinString2(SimVar simvar)
::=
match simvar
case SIMVAR(minValue = minValue) then
match minValue
match minValue
case SOME(e as ICONST(__)) then ' min="<%initValXml(e)%>"'
case SOME(e as RCONST(__)) then ' min="<%initValXml(e)%>"'
case SOME(e as SCONST(__)) then ' min="<%initValXml(e)%>"'
Expand All @@ -288,7 +288,7 @@ template MaxString2(SimVar simvar)
::=
match simvar
case SIMVAR(maxValue = maxValue) then
match maxValue
match maxValue
case SOME(e as ICONST(__)) then ' max="<%initValXml(e)%>"'
case SOME(e as RCONST(__)) then ' max="<%initValXml(e)%>"'
case SOME(e as SCONST(__)) then ' max="<%initValXml(e)%>"'
Expand All @@ -301,7 +301,7 @@ template NominalString2(SimVar simvar)
::=
match simvar
case SIMVAR(nominalValue = nominalValue) then
match nominalValue
match nominalValue
case SOME(e as RCONST(__)) then ' nominal="<%initValXml(e)%>"'
else ''
end NominalString2;
Expand Down

0 comments on commit afff8b1

Please sign in to comment.