Skip to content

Commit ff55d84

Browse files
authored
Hint at closing the method (#759)
1 parent 39bbdb0 commit ff55d84

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/StrictJsonTests/ModuleInit.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
public static class ModuleInit
1+
public static class ModuleInit
22
{
33
#region UseStrictJson
44

55
[ModuleInitializer]
6-
public static void Init()
7-
{
6+
public static void Init() =>
87
VerifierSettings.UseStrictJson();
98

10-
#endregion
9+
#endregion
10+
11+
[ModuleInitializer]
12+
public static void InitDerivePathInfo() =>
1113
DerivePathInfo(
1214
(_, _, type, method) => new(AttributeReader.GetProjectDirectory(), typeName: type.Name, method.Name));
13-
}
14-
}
15+
}

0 commit comments

Comments
 (0)