From 2938634eacefba6af10b76178c0728b4aa8a412f Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Wed, 5 Jul 2017 17:35:18 +0900 Subject: [PATCH] Change the access modifier of Notification's constructor to internal Change-Id: Ie091f483b972cc97e0ef9fd55ddddb4c016d5ccb Signed-off-by: Seonah Moon --- packaging/csapi-download.spec | 2 +- src/Tizen.Content.Download/Tizen.Content.Download.csproj | 2 +- src/Tizen.Content.Download/Tizen.Content.Download/Notification.cs | 6 +----- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/packaging/csapi-download.spec b/packaging/csapi-download.spec index d684b2d..c8aa309 100755 --- a/packaging/csapi-download.spec +++ b/packaging/csapi-download.spec @@ -1,6 +1,6 @@ Name: csapi-download Summary: Tizen Download API for C# -Version: 1.0.8 +Version: 1.0.9 Release: 1 Group: Development/Libraries License: Apache-2.0 diff --git a/src/Tizen.Content.Download/Tizen.Content.Download.csproj b/src/Tizen.Content.Download/Tizen.Content.Download.csproj index 09756f7..ddb4fce 100644 --- a/src/Tizen.Content.Download/Tizen.Content.Download.csproj +++ b/src/Tizen.Content.Download/Tizen.Content.Download.csproj @@ -1,7 +1,7 @@  - 1.0.8 + 1.0.9 Samsung Electronics © Samsung Electronics Co., Ltd All Rights Reserved Provides the Download API for Tizen .NET diff --git a/src/Tizen.Content.Download/Tizen.Content.Download/Notification.cs b/src/Tizen.Content.Download/Tizen.Content.Download/Notification.cs index 1b984b2..de162a6 100755 --- a/src/Tizen.Content.Download/Tizen.Content.Download/Notification.cs +++ b/src/Tizen.Content.Download/Tizen.Content.Download/Notification.cs @@ -27,11 +27,7 @@ namespace Tizen.Content.Download { private int _downloadId; - /// - /// Creates a Notification object - /// - /// 3 - public Notification(int requestId) + internal Notification(int requestId) { _downloadId = requestId; } -- 2.7.4