Skip to content

Commit aeaf3e6

Browse files
committed
Fixed generation of comments.
1 parent 02de2bb commit aeaf3e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReClass.NET/CodeGenerator/CSharpCodeGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private static void WriteClass(IndentedTextWriter writer, ClassNode @class, ILog
178178
writer.Write($"public readonly {type} {node.Name};");
179179
if (!string.IsNullOrEmpty(node.Comment))
180180
{
181-
writer.Write(" ");
181+
writer.Write(" //");
182182
writer.Write(node.Comment);
183183
}
184184
writer.WriteLine();

0 commit comments

Comments
 (0)