Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CodySchrank committed Mar 16, 2018
1 parent 18d33af commit 4e241c6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Source/MTT/ConvertMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,11 +329,11 @@ private string ToPascalCase(string str) {
private bool CheckIsArray(string type)
{
return type.Contains("[]") ||
type.Contains("ICollection") ||
type.Contains("IEnumerable") ||
type.Contains("Array") ||
type.Contains("Enumerable") ||
type.Contains("Collection");
type.Contains("ICollection") ||
type.Contains("IEnumerable") ||
type.Contains("Array") ||
type.Contains("Enumerable") ||
type.Contains("Collection");
}

private string CleanType(string type) {
Expand All @@ -355,7 +355,8 @@ private string[] ExplodeLine(string line) {
.Replace("static", String.Empty)
.Replace("const", String.Empty)
.Replace("readonly", String.Empty)
.Trim().Split(' ');
.Trim()
.Split(' ');
}

private string Find(string query, ModelFile file) {
Expand Down

0 comments on commit 4e241c6

Please sign in to comment.