Skip to content

Commit 41392f9

Browse files
eh-iartThundernerd
andauthored
Apply formatting fixes from code review
Co-authored-by: Christiaan Bloemendaal <github@tnrd.net>
1 parent 3810466 commit 41392f9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Runtime/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ out TInterface value
4848
/// </summary>
4949
public static List<SerializableInterface<T>> ToSerializableInterfaceList<T>(this IEnumerable<T> list) where T : class
5050
{
51-
return list.Select(e => new SerializableInterface<T>(e) ).ToList();
51+
return list.Select(e => new SerializableInterface<T>(e)).ToList();
5252
}
5353

5454
/// <summary>

Runtime/SerializableInterface.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@ public class SerializableInterface<TInterface> : ISerializableInterface where TI
1717

1818
public SerializableInterface()
1919
{
20-
2120
}
21+
2222
public SerializableInterface(TInterface value)
2323
{
2424
Value = value;
2525
}
26-
27-
2826
public TInterface Value
2927
{
3028
get

0 commit comments

Comments
 (0)