Skip to content

Commit

Permalink
Minor formatting improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreylanters committed Jan 5, 2022
1 parent 31db11f commit d7e7a44
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Editor/GenerateFileEditorWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ private void Generate () {
_overwriteAllVirtuals ? "" : null,
_overwriteAllVirtuals && _addFileHeaderComments ? "\t/// <summary>Method incidates whether the System should Update.</summary>" : null,
_overwriteAllVirtuals && _addFileHeaderComments ? "\t/// <returns>Whether the Controller should update this system.</returns>" : null,
_overwriteAllVirtuals ? "\tpublic override bool ShouldUpdate () { return true; }" : null,
_overwriteAllVirtuals ? "\tpublic override bool ShouldUpdate () {" : null,
_overwriteAllVirtuals ? "\t\treturn true;" : null,
_overwriteAllVirtuals ? "\t}" : null,
"}"
});

Expand Down Expand Up @@ -249,7 +251,8 @@ private void Generate () {
_addFileHeaderComments ? "/// Created: " + _dateTimeStamp : null,
_addFileHeaderComments ? "/// " + _fileName + "." : null,
_addFileHeaderComments ? "/// </summary>" : null,
"public class " + _fileName + " { }"
"public class " + _fileName + " {"
"}"
});

this.Close ();
Expand Down

0 comments on commit d7e7a44

Please sign in to comment.