Remove unused code lines
authorcskim <charles0.kim@samsung.com>
Tue, 28 Feb 2017 06:53:52 +0000 (15:53 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:44 +0000 (18:34 +0900)
Change-Id: I48804df07170eff812708d23a2696e4535175113

TVHome/TVHome.TizenTV/Ports/DBPort.cs
TVHome/TVHome.TizenTV/TVHome.TizenTV.cs

index 81420b308a657c59a59c3c9eaf361b66a460b73d..6993a6a28f39f68428a978799bc5c36347ff41e0 100644 (file)
@@ -42,26 +42,6 @@ namespace TVHome.TizenTV.Ports
 \r
             [DllImport(Library, EntryPoint = "sqlite3_exec", CallingConvention = CallingConvention.Cdecl)]\r
             internal static extern int Exec(IntPtr handle, string sql, ExecCallback callback, IntPtr notUsed, IntPtr errorMessage);\r
-\r
-            /*\r
-            [DllImport(Library, EntryPoint = "sqlite3_prepare_v2", CallingConvention = CallingConvention.Cdecl)]\r
-            internal static extern int Prepare(IntPtr handle, string sql, int count, out IntPtr statement, IntPtr notUsed);\r
-\r
-            [DllImport(Library, EntryPoint = "sqlite3_step", CallingConvention = CallingConvention.Cdecl)]\r
-            internal static extern int Step(IntPtr statement);\r
-\r
-            [DllImport(Library, EntryPoint = "sqlite3_column_name", CallingConvention = CallingConvention.Cdecl)]\r
-            internal static extern StringBuilder ColumnName(IntPtr statement, int col);\r
-\r
-            [DllImport(Library, EntryPoint = "sqlite3_column_int", CallingConvention = CallingConvention.Cdecl)]\r
-            internal static extern int ColumnInt(IntPtr statement, int col);\r
-\r
-            [DllImport(Library, EntryPoint = "sqlite3_column_text", CallingConvention = CallingConvention.Cdecl)]\r
-            internal static extern StringBuilder ColumnText(IntPtr statement, int col);\r
-\r
-            [DllImport(Library, EntryPoint = "sqlite3_finalize", CallingConvention = CallingConvention.Cdecl)]\r
-            internal static extern int Finalize(IntPtr statement);\r
-            */\r
         }\r
 \r
         private const int SQLITE_OK = 0;\r
index 1b7fba577eef634b302f9ca9993f0ec9edc9c6cb..0b516f1dc862a0672dc7471e500d67e3fdafe4ed 100644 (file)
@@ -24,9 +24,6 @@ namespace TVHome.TizenTV
 \r
             AppResourcePath = DirectoryInfo.Resource;\r
             AppDataPath = DirectoryInfo.Data;\r
-\r
-            // TODO : remove this.\r
-            // var dbPort = new DBPort();\r
             DebuggingPort.D("I'm here");\r
             LoadApplication(new App());\r
         }\r