Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/Compat/Environment.cs')
-rw-r--r--LibGit2Sharp/Core/Compat/Environment.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/LibGit2Sharp/Core/Compat/Environment.cs b/LibGit2Sharp/Core/Compat/Environment.cs
deleted file mode 100644
index 49b8e33c..00000000
--- a/LibGit2Sharp/Core/Compat/Environment.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-
-namespace LibGit2Sharp.Core.Compat
-{
- /// <summary>
- /// Provides information about, and means to manipulate, the current environment and platform.
- /// </summary>
- public static class Environment
- {
- /// <summary>
- /// Determines whether the current process is a 64-bit process.
- /// </summary>
- public static bool Is64BitProcess
- {
- get { return IntPtr.Size == 8; }
- }
- }
-}