Ver Fonte

Make RaiseExceptionEvent private.

Gert Driesen há 8 anos atrás
pai
commit
f726b706df
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/Renci.SshNet/Channels/Channel.cs

+ 2 - 2
src/Renci.SshNet/Channels/Channel.cs

@@ -439,10 +439,10 @@ namespace Renci.SshNet.Channels
         #endregion // Channel virtual methods
 
         /// <summary>
-        /// Raises <see cref="Channel.Exception"/> event.
+        /// Raises <see cref="Exception"/> event.
         /// </summary>
         /// <param name="exception">The exception.</param>
-        protected void RaiseExceptionEvent(Exception exception)
+        private void RaiseExceptionEvent(Exception exception)
         {
             var handlers = Exception;
             if (handlers != null)