summaryrefslogtreecommitdiff
path: root/FireBase/Query/AuthQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'FireBase/Query/AuthQuery.cs')
-rw-r--r--FireBase/Query/AuthQuery.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/FireBase/Query/AuthQuery.cs b/FireBase/Query/AuthQuery.cs
index 8a8d3e8..14beb7e 100644
--- a/FireBase/Query/AuthQuery.cs
+++ b/FireBase/Query/AuthQuery.cs
@@ -15,7 +15,8 @@ namespace Firebase.Database.Query
/// <param name="parent"> The parent. </param>
/// <param name="tokenFactory"> The authentication token factory. </param>
/// <param name="client"> The owner. </param>
- public AuthQuery(FirebaseQuery parent, Func<string> tokenFactory, FirebaseClient client) : base(parent, () => client.Options.AsAccessToken ? "access_token" : "auth", client)
+ public AuthQuery(FirebaseQuery parent, Func<string> tokenFactory, FirebaseClient client) : base(parent,
+ () => client.Options.AsAccessToken ? "access_token" : "auth", client)
{
this.tokenFactory = tokenFactory;
}
@@ -27,7 +28,7 @@ namespace Firebase.Database.Query
/// <returns> The <see cref="string"/>. </returns>
protected override string BuildUrlParameter(FirebaseQuery child)
{
- return this.tokenFactory();
+ return tokenFactory();
}
}
-}
+} \ No newline at end of file