Skip to content

Commit

Permalink
[Fix]: "Empty config specifiers should not have parenthesises." fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotVU committed Jan 19, 2013
1 parent 7f64844 commit 8f4b7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UELib/Core/Decompilers/UnClassDecompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,9 @@ private string FormatFlags()
if( String.Compare( inner, "None", StringComparison.OrdinalIgnoreCase ) == 0
|| String.Compare( inner, "System", StringComparison.OrdinalIgnoreCase ) == 0 )
{
inner = String.Empty;
output += "\r\n\tconfig";
}
output += "\r\n\tconfig(" + inner + ")";
else output += "\r\n\tconfig(" + inner + ")";
}

if( (ClassFlags & (uint)Flags.ClassFlags.ParseConfig) != 0 )
Expand Down

0 comments on commit 8f4b7bc

Please sign in to comment.