From 304437b834e8c87687f68333ae67a13ee1377a73 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Wed, 12 Jun 2019 21:47:51 +0200 Subject: Adjust Codestyle --- dsa/FireBase/Query/ChildQuery.cs | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'dsa/FireBase/Query/ChildQuery.cs') diff --git a/dsa/FireBase/Query/ChildQuery.cs b/dsa/FireBase/Query/ChildQuery.cs index 014fe09..579bd0a 100644 --- a/dsa/FireBase/Query/ChildQuery.cs +++ b/dsa/FireBase/Query/ChildQuery.cs @@ -1,12 +1,10 @@ using System; -namespace Firebase.Database.Query -{ +namespace Firebase.Database.Query { /// /// Firebase query which references the child of current node. /// - public class ChildQuery : FirebaseQuery - { + public class ChildQuery : FirebaseQuery { private readonly Func pathFactory; /// @@ -16,8 +14,7 @@ namespace Firebase.Database.Query /// The path to the child node. /// The owner. public ChildQuery(FirebaseQuery parent, Func pathFactory, FirebaseClient client) - : base(parent, client) - { + : base(parent, client) { this.pathFactory = pathFactory; } @@ -27,8 +24,7 @@ namespace Firebase.Database.Query /// The client. /// The path to the child node. public ChildQuery(FirebaseClient client, Func pathFactory) - : this(null, pathFactory, client) - { + : this(null, pathFactory, client) { } /// @@ -36,8 +32,7 @@ namespace Firebase.Database.Query /// /// The child of this child. /// The . - protected override string BuildUrlSegment(FirebaseQuery child) - { + protected override string BuildUrlSegment(FirebaseQuery child) { var s = pathFactory(); if (s != string.Empty && !s.EndsWith("/")) s += '/'; -- cgit v1.2.3-70-g09d2