Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 92ac8fc

Browse files
committed
make ref internal
1 parent 348e1b3 commit 92ac8fc

File tree

1 file changed

+4
-4
lines changed
  • Titanium.Web.Proxy/Helpers

1 file changed

+4
-4
lines changed

Titanium.Web.Proxy/Helpers/Ref.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66

77
namespace Titanium.Web.Proxy.Helpers
88
{
9-
public class Ref<T>
9+
internal class Ref<T>
1010
{
11-
public Ref()
11+
internal Ref()
1212
{
1313
}
1414

15-
public Ref(T value)
15+
internal Ref(T value)
1616
{
1717
Value = value;
1818
}
1919

20-
public T Value { get; set; }
20+
internal T Value { get; set; }
2121

2222
public override string ToString()
2323
{

0 commit comments

Comments
 (0)