Skip to content

Commit 28129b3

Browse files
committed
Made Optional a private class
1 parent 75c8b89 commit 28129b3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

FirebaseAdmin/FirebaseAdmin/Auth/UserRecordArgs.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,11 @@ private void AddDeleteProvider(string provider)
378378
}
379379
}
380380

381-
internal class Optional<T>
381+
/// <summary>
382+
/// Wraps a nullable value. Used to differentiate between parameters that have not been set, and
383+
/// the parameters that have been explicitly set to null.
384+
/// </summary>
385+
private class Optional<T>
382386
{
383387
internal Optional(T value)
384388
{

0 commit comments

Comments
 (0)