]> git.deb.at Git - rhonda/impostor.git/commitdiff
Don't do public methods in interfaces
authorjs6pak <kubastaron@hotmail.com>
Wed, 15 Dec 2021 14:35:46 +0000 (15:35 +0100)
committerjs6pak <kubastaron@hotmail.com>
Wed, 15 Dec 2021 14:35:46 +0000 (15:35 +0100)
src/Impostor.Api/Net/Messages/IMessageWriter.cs

index 9ee85d06f4740ccfdc547737804a09fd4ecd9e9a..dbad726d76b1d6fff9c6022bfb9957731dc63c10 100644 (file)
@@ -72,13 +72,13 @@ namespace Impostor.Api.Net.Messages
         ///     Writes an ulong to the message.
         /// </summary>
         /// <param name="value">Value to write.</param>
-        public void Write(ulong value);
+        void Write(ulong value);
 
         /// <summary>
         ///     Writes an ulong to the message.
         /// </summary>
         /// <param name="value">Value to write.</param>
-        public void Write(long value);
+        void Write(long value);
 
         /// <summary>
         ///     Writes a float to the message.