[NUI] Remove build warnings
authorEunki Hong <eunkiki.hong@samsung.com>
Sun, 8 Oct 2023 07:32:54 +0000 (16:32 +0900)
committerEunki Hong <h.pichulia@gmail.com>
Wed, 25 Oct 2023 12:48:44 +0000 (21:48 +0900)
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
src/Tizen.NUI/src/public/Accessibility/IAtspiSelection.cs
src/Tizen.NUI/src/public/ParticleSystem/Particle.cs
src/Tizen.NUI/src/public/ParticleSystem/ParticleEmitter.cs
src/Tizen.NUI/src/public/ParticleSystem/ParticleModifier.cs

index 38f1a66..0ee0b18 100644 (file)
@@ -65,7 +65,7 @@ namespace Tizen.NUI.Accessibility
         /// Checks whether a child is selected.
         /// </summary>
         /// <param name="childIndex"> The index of the child </param>
-        /// <returns>< True if given child is selected, false otherwise /returns>
+        /// <returns>True if given child is selected, false otherwise </returns>
         [EditorBrowsable(EditorBrowsableState.Never)]
         bool AccessibilityIsChildSelected(int childIndex);
 
index c5234f7..667c438 100644 (file)
@@ -18,9 +18,6 @@
 using System;
 using System.IO;
 using System.Runtime.InteropServices;
-using System;
-using System.Runtime.InteropServices;
-using global::System.Runtime.InteropServices;
 using System.ComponentModel;
 using System.Reflection;
 
index 5751fc6..761c491 100644 (file)
@@ -103,7 +103,7 @@ namespace Tizen.NUI.ParticleSystem
         /// <summary>
         /// Raises the window to the top of the window stack.
         /// </summary>
-        /// <param name="particleEmitter">Source object to copy.</param>
+        /// <param name="source">Source object to copy.</param>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void SetSource<T>(ParticleSource<T> source) where T : ParticleSourceInterface, new()
         {
index 8435004..d835c2d 100644 (file)
@@ -85,7 +85,7 @@ namespace Tizen.NUI.ParticleSystem
     /// Modifiers can be stacked (more than one can be added to the ParticleEmitter).
     /// Output of one modifier becomes input for next modifier.
     ///
-    /// Modifier calls into the implementation of <see cref="ParticleModifierInterface"> class.
+    /// Modifier calls into the implementation of <see cref="ParticleModifierInterface"/> class.
     /// 
     /// </remarks>
     /// <typeparam name="T">Class of interface that derives from <see cref="ParticleModifierInterface"/></typeparam>