Skip to content

Commit 255e4e9

Browse files
committed
Fix more lint issues
1 parent 81336c0 commit 255e4e9

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/SourceFlow.Net.EntityFramework/SourceFlow.Stores.EntityFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
</None>
5353
</ItemGroup>
5454

55-
</Project>
55+
</Project>

src/SourceFlow/Aggregate/IAggregate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ namespace SourceFlow.Aggregate
66
public interface IAggregate
77
{
88
}
9-
}
9+
}

src/SourceFlow/Aggregate/IAggregateFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ public interface IAggregateFactory
1616
Task<TAggregate> Create<TAggregate>()
1717
where TAggregate : IAggregate;
1818
}
19-
}
19+
}

src/SourceFlow/Impl/AggregateFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ public async Task<TAggregate> Create<TAggregate>()
3737
return await Task.FromResult((TAggregate)aggregate);
3838
}
3939
}
40-
}
40+
}

src/SourceFlow/Messaging/IMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ public Metadata()
5252
/// </summary>
5353
public Dictionary<string, object> Properties { get; set; } = new Dictionary<string, object>();
5454
}
55-
}
55+
}

src/SourceFlow/Messaging/IName.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ public interface IName
1010
/// </summary>
1111
string Name { get; set; }
1212
}
13-
}
13+
}

src/SourceFlow/Projections/IViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ public interface IViewModel
77
{
88
int Id { get; set; }
99
}
10-
}
10+
}

0 commit comments

Comments
 (0)