mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Symbian Installation File] Fix tabulation level in else if conditions.
This commit is contained in:
@@ -516,10 +516,8 @@ public sealed partial class Symbian
|
||||
|
||||
break;
|
||||
case FileRecordType.ElseIf:
|
||||
conditionLevel--;
|
||||
|
||||
tabulationChars = new char[conditionLevel];
|
||||
for(var i = 0; i < conditionLevel; i++)
|
||||
tabulationChars = new char[conditionLevel - 1];
|
||||
for(var i = 0; i < conditionLevel - 1; i++)
|
||||
tabulationChars[i] = '\t';
|
||||
tabulation = new string(tabulationChars);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user