Skip to content

Commit a2de48d

Browse files
David EllingsworthDavid Ellingsworth
David Ellingsworth
authored and
David Ellingsworth
committed
GH-5350: Use StringBuilder.Append(char) for appending a single character.
1 parent 356ed1b commit a2de48d

File tree

1 file changed

+1
-1
lines changed
  • src/NHibernate.Test/NHSpecificTest/GH3530

1 file changed

+1
-1
lines changed

src/NHibernate.Test/NHSpecificTest/GH3530/Fixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private void CreateTable(string name)
7070

7171
// Add the primary key contraint for the identity column
7272
sb.Append($", {Dialect.PrimaryKeyString} ( Id )");
73-
sb.Append(")");
73+
sb.Append(')');
7474

7575
using (var cn = Sfi.ConnectionProvider.GetConnection())
7676
{

0 commit comments

Comments
 (0)