Skip to content

Commit 44427f1

Browse files
committed
Remove spaces from empty line
1 parent 7526c02 commit 44427f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/gamemode.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def constructor_body
113113
"m_pExtraColumns = nullptr; // new C#{@controller.name}Columns();",
114114
'm_pSqlStats->SetExtraColumns(m_pExtraColumns);',
115115
'm_pSqlStats->CreateTable(m_pStatsTable);'
116-
].map { |m| "\t#{m}" }.join("\n")
116+
].map { |m| m == "" ? "" : "\t#{m}" }.join("\n")
117117
end
118118

119119
def include_guard_open

0 commit comments

Comments
 (0)