Skip to content

Commit

Permalink
Some more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rankynbass committed Jul 27, 2024
1 parent c16b9d8 commit 5cb374a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/XIVLauncher.Core/CoreEnvironmentSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ public static string GetCleanEnvironmentVariable(string envvar, string badstring

public static uint GetAltAppId(string? appid)
{
uint result;
uint.TryParse(appid, out result);
uint.TryParse(appid, out var result);

// Will return 0 if appid is invalid (or zero).
return result;
Expand Down

0 comments on commit 5cb374a

Please sign in to comment.