Remove unnecessary summary
authorSeungha Son <seungha.son@samsung.com>
Tue, 25 Apr 2017 22:50:45 +0000 (07:50 +0900)
committerSeungha Son <seungha.son@samsung.com>
Tue, 25 Apr 2017 22:55:39 +0000 (07:55 +0900)
 Remove unnecessary summary to disappear summary in doxygen.
 This summary is related with EditorBrowsableState.Never attributes,
 So this summary shouldn't be open in public documentation.

Signed-off-by: Seungha Son <seungha.son@samsung.com>
Change-Id: I85ba7c6027a6c9edf74d03366d544e376d4e4459

src/Tizen.Applications.Notification/Interop/Interop.Notification.cs
src/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationManager.cs

index ce81769..6d1165e 100755 (executable)
@@ -15,7 +15,6 @@
  */
 
 using System;
-using System.ComponentModel;
 using System.Runtime.InteropServices;
 using Tizen.Applications;
 using Tizen.Applications.Notifications;
index ad5a928..10ecd77 100755 (executable)
@@ -452,14 +452,6 @@ namespace Tizen.Applications.Notifications
             return state;
         }
 
-        /// <summary>
-        /// Method to get style you already added.
-        /// </summary>
-        /// <exception cref="ArgumentException">Thrown when argument is null</exception>
-        /// <param name="notification">Notification to make <see cref="NotificationSafeHandle"/>.</param>
-        /// <returns>
-        /// The Notification object
-        /// </returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static NotificationSafeHandle MakeNotificationSafeHandle(Notification notification)
         {
@@ -473,14 +465,6 @@ namespace Tizen.Applications.Notifications
             return notification.Handle;
         }
 
-        /// <summary>
-        /// Method to get style you already added.
-        /// </summary>
-        /// <exception cref="ArgumentException">Thrown when argument is null</exception>
-        /// <param name="handle">SafeHandle to make <see cref="Notification"/> Object</param>
-        /// <returns>
-        /// The Notification object
-        /// </returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public static Notification MakeNotification(NotificationSafeHandle handle)
         {