Skip to content

Commit

Permalink
Fix some minor nitpicks
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Mar 2, 2024
1 parent d808881 commit ac17f5f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions CelesteMod/Source/CelesteMod-core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
<ItemGroup>
<PackageReference Include="MonoMod.RuntimeDetour" Version="25.0.2" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.Patcher" Version="25.0.0-prerelease.2" />
<!--/-:replacements:noEmit -->
<PackageReference Include="CelesteAnalyzer" Version="1.0.3.1" />
<!--/+:replacements:noEmit -->
</ItemGroup>

<ItemGroup>
Expand Down Expand Up @@ -84,8 +82,8 @@
string GetRelativePath(string fromPath, string toPath)
{
if (string.IsNullOrEmpty(fromPath)) throw new ArgumentNullException("fromPath");
if (string.IsNullOrEmpty(toPath)) throw new ArgumentNullException("toPath");
if (string.IsNullOrEmpty(fromPath)) throw new ArgumentNullException(nameof(fromPath));
if (string.IsNullOrEmpty(toPath)) throw new ArgumentNullException(nameof(toPath));
Uri fromUri = new Uri(fromPath);
Uri toUri = new Uri(toPath);
Expand Down

0 comments on commit ac17f5f

Please sign in to comment.