From a876c8248a1c7a5841edab159f240a63ab9a42af Mon Sep 17 00:00:00 2001 From: Shinhui Kang Date: Mon, 6 Mar 2017 01:38:06 -0800 Subject: [PATCH] Revert "Change return-type from List to IEnumerable" This reverts commit 84e7a153e985f3169a57a96bb1d6183ecb4311c4. Change-Id: If6217d904a07db2fe874985749e72c812bab956a --- packaging/csapi-telephony.spec | 0 src/Tizen.Telephony/Tizen.Telephony.nuspec | 0 src/Tizen.Telephony/Tizen.Telephony/Call.cs | 2 +- src/Tizen.Telephony/Tizen.Telephony/SlotHandle.cs | 4 ++-- src/Tizen.Telephony/Tizen.Telephony/Telephony.cs | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 packaging/csapi-telephony.spec mode change 100644 => 100755 src/Tizen.Telephony/Tizen.Telephony.nuspec diff --git a/packaging/csapi-telephony.spec b/packaging/csapi-telephony.spec old mode 100644 new mode 100755 diff --git a/src/Tizen.Telephony/Tizen.Telephony.nuspec b/src/Tizen.Telephony/Tizen.Telephony.nuspec old mode 100644 new mode 100755 diff --git a/src/Tizen.Telephony/Tizen.Telephony/Call.cs b/src/Tizen.Telephony/Tizen.Telephony/Call.cs index 77b6fc1..7a4c1ea 100644 --- a/src/Tizen.Telephony/Tizen.Telephony/Call.cs +++ b/src/Tizen.Telephony/Tizen.Telephony/Call.cs @@ -91,7 +91,7 @@ namespace Tizen.Telephony /// Incase of Privileges are not defined /// Incase of Telephony is not supported> /// Incase of Out of Memory> - public IEnumerable GetCallHandleList() + public List GetCallHandleList() { uint count; _callList = new IntPtr(); diff --git a/src/Tizen.Telephony/Tizen.Telephony/SlotHandle.cs b/src/Tizen.Telephony/Tizen.Telephony/SlotHandle.cs index a93b281..51f462e 100755 --- a/src/Tizen.Telephony/Tizen.Telephony/SlotHandle.cs +++ b/src/Tizen.Telephony/Tizen.Telephony/SlotHandle.cs @@ -58,7 +58,7 @@ namespace Tizen.Telephony /// 1. Operation Not Supported /// 2. Operation Failed /// - public void SetNotificationId(IEnumerable list) + public void SetNotificationId(List list) { try { @@ -85,7 +85,7 @@ namespace Tizen.Telephony /// 1. Operation Not Supported /// 2. Operation Failed /// - public void RemoveNotificationId(IEnumerable list) + public void RemoveNotificationId(List list) { foreach (ChangeNotificationEventArgs.Notification n in list) { diff --git a/src/Tizen.Telephony/Tizen.Telephony/Telephony.cs b/src/Tizen.Telephony/Tizen.Telephony/Telephony.cs index ed433a6..7c8b239 100755 --- a/src/Tizen.Telephony/Tizen.Telephony/Telephony.cs +++ b/src/Tizen.Telephony/Tizen.Telephony/Telephony.cs @@ -156,7 +156,7 @@ namespace Tizen.Telephony /// 2. If the operation is not supported on device /// 3. If the Operation Failed /// - public static IEnumerable Init() + public static List Init() { //DeInitialize Previous Handles if present if (_isInitialized) -- 2.7.4