浏览代码

Make RaiseExceptionEvent private.

Gert Driesen 8 年之前
父节点
当前提交
f726b706df
共有 1 个文件被更改,包括 2 次插入2 次删除
  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)