Skip to content

Commit 1a6c74d

Browse files
committed
docs(xml): Added XML docs suppression to transports
1 parent 29265e8 commit 1a6c74d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

MLAPI.EnetTransport/EnetTransport.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
2+
using System;
23
using System.Collections.Generic;
34
using ENet;
45
using MLAPI.Transports;
@@ -320,4 +321,5 @@ public void GetEnetConnectionDetails(ulong clientId, out uint peerId)
320321
}
321322
}
322323
}
323-
}
324+
}
325+
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

MLAPI/Data/Transports/UNET/UnetTransport.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
12
using System;
23
using System.Collections.Generic;
34
using MLAPI.Logging;
@@ -301,4 +302,5 @@ private void UpdateRelay()
301302
RelayTransport.RelayPort = (ushort)MLAPIRelayPort;
302303
}
303304
}
304-
}
305+
}
306+
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

0 commit comments

Comments
 (0)