Skip to content

Commit

Permalink
Format code.
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaS-nu committed May 30, 2023
1 parent f9f9ba7 commit 0146061
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ private string GetArchInfo(string directoryName)
return DefaultArch.TryGetValue(OS, out var arch)
? arch
: nameof(ArchitectureType.X64);

}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,6 @@ private string GetHighestVersion(bool onlyStable)
}
}


throw new InvalidOperationException(
$@"There is no available version. Versions: {
_existVersions.Select(it => it?.Aggregate((prev, curr) => $"{prev}.{curr}"))
Expand Down Expand Up @@ -432,7 +431,6 @@ private string GetLowestVersion(bool onlyStable)
}
}


throw new InvalidOperationException(
$@"There is no available version. Versions: {
_existVersions?.Select(it => it?.Aggregate((prev, curr) => $"{prev}.{curr}"))
Expand Down Expand Up @@ -485,7 +483,6 @@ private string GetSuitVersion(bool onlyStable)
}
}


throw new InvalidOperationException(
$@"There is no available version. Versions: {
_existVersions.Select(it => it?.Aggregate((prev, curr) => $"{prev}.{curr}"))
Expand Down

0 comments on commit 0146061

Please sign in to comment.