[NUI] fixed build warning CS1574 (#2191)
authorJoogabYun <40262755+JoogabYun@users.noreply.github.com>
Fri, 6 Nov 2020 06:27:02 +0000 (15:27 +0900)
committerGitHub <noreply@github.com>
Fri, 6 Nov 2020 06:27:02 +0000 (15:27 +0900)
src/Tizen.NUI/src/internal/FrameBroker/FrameBrokerBase.cs
src/Tizen.NUI/src/internal/FrameProvider/FrameProvider.cs

index 7ae215d..5604e34 100755 (executable)
@@ -211,7 +211,7 @@ namespace Tizen.NUI
         {
             Log.Warn(LogTag, "The OnFrameErred() is not implemented");
         }
-                
+
         private void OnCreateNative(IntPtr context, IntPtr userData)
         {
             _context = context;
index 40cc1f1..41c4f36 100755 (executable)
@@ -37,7 +37,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="window">The window instance of Ecore_Wl2_Window pointer.</param>
         /// <exception cref="ArgumentException">Thrown when failed because of an invalid parameter.</exception>
-        /// <exception cref="Exceptions.OutOfMemoryException">Thrown when the memory is insufficient.</exception>
+        /// <exception cref="OutOfMemoryException">Thrown when the memory is insufficient.</exception>
         /// <exception cref="InvalidOperationException">Thrown when failed to create the frame broker handle.</exception>
         /// <remarks>This class is only avaliable for platform level signed applications.</remarks>
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -128,7 +128,7 @@ namespace Tizen.NUI
         public void Dispose()
         {
             Dispose(true);
-         
+
         }
     }
 }