Skip to content

Commit 143698a

Browse files
committed
Use Path.Combine instead of Path.Join
1 parent fe8e5a3 commit 143698a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cirilla.Core.Test/Utility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Cirilla.Core.Test
77
{
88
public static class Utility
99
{
10-
public static string GetFullPath(string path) => Path.Join(Settings.MHWExtractedDataRoot, path);
10+
public static string GetFullPath(string path) => Path.Combine(Settings.MHWExtractedDataRoot, path);
1111

1212
public static bool CheckFilesAreSame(string path1, string path2)
1313
{

0 commit comments

Comments
 (0)