Skip to content

Commit c1786eb

Browse files
committed
Add errors to missed obsolete tags
1 parent bb1bee7 commit c1786eb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

com.unity.netcode.gameobjects/Runtime/Messaging/RpcAttributes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public struct RpcAttributeParams
6262
/// <remarks>
6363
/// Deprecated in favor of <see cref="InvokePermission"/>.
6464
/// </remarks>
65-
[Obsolete("RequireOwnership is deprecated. Please use InvokePermission instead.")]
65+
[Obsolete("RequireOwnership is deprecated. Please use InvokePermission instead."), true]
6666
public bool RequireOwnership;
6767

6868
/// <summary>

com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public enum ProtocolType
6161
/// <summary>
6262
/// The default maximum send queue size
6363
/// </summary>
64-
[Obsolete("MaxSendQueueSize is now determined dynamically (can still be set programmatically using the MaxSendQueueSize property). This initial value is not used anymore.", false)]
64+
[Obsolete("MaxSendQueueSize is now determined dynamically (can still be set programmatically using the MaxSendQueueSize property). This initial value is not used anymore.", true)]
6565
public const int InitialMaxSendQueueSize = 16 * InitialMaxPayloadSize;
6666

6767
// Maximum reliable throughput, assuming the full reliable window can be sent on every

0 commit comments

Comments
 (0)