Skip to content

Commit fb16d5e

Browse files
committed
Fix formatting warnings
1 parent bc3bd05 commit fb16d5e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Directory.props

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<PublicKeyToken>69f491c39445e920</PublicKeyToken>
1111

1212
<SourceRoot>$(MSBuildThisFileDirectory)..\</SourceRoot>
13+
<WarningsNotAsErrors>IDE0040;$(WarningsNotAsErrors)</WarningsNotAsErrors>
1314
</PropertyGroup>
1415

1516
</Project>

src/Moq.Tests/Regressions/IssueReportsFixture.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3542,7 +3542,7 @@ public class MyObject
35423542

35433543
public interface IMockObject
35443544
{
3545-
public string Method(Expression<Func<MyObject, bool>> expression);
3545+
string Method(Expression<Func<MyObject, bool>> expression);
35463546
}
35473547
}
35483548

@@ -3632,8 +3632,8 @@ public void Test()
36323632
}
36333633
public interface IClassA
36343634
{
3635-
public IList<string> Items { get; set; }
3636-
public void Method();
3635+
IList<string> Items { get; set; }
3636+
void Method();
36373637
}
36383638
}
36393639

0 commit comments

Comments
 (0)