Skip to content

Commit

Permalink
Added back empty ctor for FileGeneration
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Mar 6, 2021
1 parent 71ab5e8 commit 1fd78de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Loqui/File Generation/FileGeneration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ public string this[int index]
}
}

public FileGeneration(int depthCount = 4)
public FileGeneration()
: this(depthCount: 4)
{
}

public FileGeneration(int depthCount)
{
this.AppendLine();
StringBuilder sb = new StringBuilder();
Expand Down

0 comments on commit 1fd78de

Please sign in to comment.