Skip to content

Beautify Platform class #1021

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions LibGit2Sharp/Core/Platform.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace LibGit2Sharp.Core
{
Expand All @@ -12,18 +9,13 @@ internal enum OperatingSystemType
MacOSX
}

internal class Platform
internal static class Platform
{
public static string ProcessorArchitecture
{
get
{
if (Environment.Is64BitProcess)
{
return "amd64";
}

return "x86";
return Environment.Is64BitProcess ? "amd64" : "x86";
}
}

Expand All @@ -32,8 +24,6 @@ public static OperatingSystemType OperatingSystem
get
{
// See http://www.mono-project.com/docs/faq/technical/#how-to-detect-the-execution-platform
var platformId = (int)Environment.OSVersion.Platform;

switch ((int)Environment.OSVersion.Platform)
{
case 4:
Expand Down