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 d5abcd32120beababb1f2dc4e9c5a6ee36851081..9049e713ec95b9a7d98abce8805f9e873c99c0f6 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 6b7df3ba73245eafd7ff66731f0be5f19fc0976e..8ebff437c430598c963cdb96df4b7701609c74b5 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 136d1c93707e9bb858d5264810ab4422108c6585..a4be778d904160ef24b766e4f6a441db254fe2dc 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)
         {