Remove GetEnv() by id
authorHyotaek Shim <hyotaek.shim@samsung.com>
Wed, 26 Jul 2017 02:23:24 +0000 (11:23 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Wed, 26 Jul 2017 02:23:24 +0000 (11:23 +0900)
Change-Id: I1e84390bf32fe7f1b148a725aeeb5053a14c7e19
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
src/Tizen.System.PlatformConfig/Tizen.System/PlatformConfig.cs

index 2a69cd4..093f3b2 100755 (executable)
@@ -24,16 +24,11 @@ namespace Tizen.System
     [EditorBrowsable(EditorBrowsableState.Never)]
     public class PlatformConfig
     {
-        public static int GetId(string name)
+        private static int GetId(string name)
         {
             return Interop.PlatformConfig.GetId(name);
         }
 
-        public static string GetEnv(int id)
-        {
-            return Interop.PlatformConfig.GetEnv(id);
-        }
-
         public static string GetEnv(string name)
        {
             return Interop.PlatformConfig.GetEnv(Interop.PlatformConfig.GetId(name));