Fix wrong comments
authorjongmyeongko <jongmyeong.ko@samsung.com>
Wed, 15 Feb 2017 13:10:54 +0000 (22:10 +0900)
committerjongmyeongko <jongmyeong.ko@samsung.com>
Mon, 20 Feb 2017 11:40:05 +0000 (20:40 +0900)
Change-Id: I403f9b6e6ccf98b52086a5fbce1d12d2c308b03d
Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
src/Tizen.Applications.PackageManager/Tizen.Applications/Package.cs
src/Tizen.Applications.PackageManager/Tizen.Applications/PackageFilter.cs
src/Tizen.Applications.PackageManager/Tizen.Applications/PackageManager.cs

index d5abcd3..9049e71 100755 (executable)
@@ -139,7 +139,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Retrieves all application IDs of this package.
         /// </summary>
-        /// <returns>Returns a dictionary containing all application info for given application type asynchronously.</returns>
+        /// <returns>Returns a dictionary containing all application info for given application type.</returns>
         public IEnumerable<ApplicationInfo> GetApplications()
         {
             return GetApplications(ApplicationType.All);
@@ -149,7 +149,7 @@ namespace Tizen.Applications
         /// Retrieves all application IDs of this package.
         /// </summary>
         /// <param name="type">Optional: AppType enum value</param>
-        /// <returns>Returns a dictionary containing all application info for given application type asynchronously.</returns>
+        /// <returns>Returns a dictionary containing all application info for given application type.</returns>
         public IEnumerable<ApplicationInfo> GetApplications(ApplicationType type)
         {
             List<ApplicationInfo> appInfoList = new List<ApplicationInfo>();
index 6b7df3b..8ebff43 100755 (executable)
@@ -19,7 +19,7 @@ using System.Collections.Generic;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// This class is a parameter of PackageManager::GetPackagesAsync method.
+    /// This class is a parameter of PackageManager::GetPackages method.
     /// </summary>
     public class PackageFilter
     {
@@ -42,7 +42,7 @@ namespace Tizen.Applications
         }
 
         /// <summary>
-        /// Filters to be used in the GetPackagesAsync method.
+        /// Filters to be used in the GetPackages method.
         /// </summary>
         public IDictionary<string, bool> Filters
         {
@@ -53,7 +53,7 @@ namespace Tizen.Applications
         }
 
         /// <summary>
-        /// This class contains possible keys for filter to be used in the GetPackagesAsync method.
+        /// This class contains possible keys for filter to be used in the GetPackages method.
         /// </summary>
         public static class Keys
         {
index 136d1c9..a4be778 100644 (file)
@@ -172,7 +172,7 @@ namespace Tizen.Applications
         /// <summary>
         /// Retrieves package information of all installed packages.
         /// </summary>
-        /// <returns>Returns the list of packages asynchronously.</returns>
+        /// <returns>Returns the list of packages.</returns>
         /// <privilege>http://tizen.org/privilege/packagemanager.info</privilege>
         public static IEnumerable<Package> GetPackages()
         {
@@ -183,7 +183,7 @@ namespace Tizen.Applications
         /// Retrieves package information of all installed packages satisfying filter conditions.
         /// </summary>
         /// <param name="filter">Optional - package filters</param>
-        /// <returns>Returns the list of packages asynchronously.</returns>
+        /// <returns>Returns the list of packages.</returns>
         /// <privilege>http://tizen.org/privilege/packagemanager.info</privilege>
         public static IEnumerable<Package> GetPackages(PackageFilter filter)
         {