Skip to content

Commit 9e94b6b

Browse files
Remove unused ToPascalCase
1 parent ea4c588 commit 9e94b6b

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/Tools/LeanCode.ContractsGenerator/Extensions/StringExtensions.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,5 @@ public static string ToCamelCase(this string str)
66
{
77
return char.ToLowerInvariant(str[0]) + str[1..];
88
}
9-
10-
public static string ToPascalCase(this string str)
11-
{
12-
return char.ToUpperInvariant(str[0]) + str[1..];
13-
}
149
}
1510
}

0 commit comments

Comments
 (0)