Skip to content

Commit

Permalink
Align name of type parameter to Tree() with Tree<>.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcweber committed Jan 14, 2025
1 parent 6da7e2d commit 5a841e6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Core/Queries/Interfaces/IGremlinQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface IGremlinQueryBase : IStartGremlinQuery

IGremlinQuery<Tree<object>> Tree();

IGremlinQuery<Tree<TRoot>> Tree<TRoot>() where TRoot : notnull;
IGremlinQuery<Tree<TNode>> Tree<TNode>() where TNode : notnull;

IGremlinQuery<TTree> Tree<TTree>(Func<ITreeBuilder, ITreeBuilderResult<TTree>> continuation) where TTree : ITree;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ TQuery Select<TQuery, TElement>(ExRam.Gremlinq.Core.StepLabel<TQuery, TElement>
ExRam.Gremlinq.Core.StepLabel<T15> label15,
ExRam.Gremlinq.Core.StepLabel<T16> label16);
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<object>> Tree();
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TRoot>> Tree<TRoot>()
where TRoot : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TNode>> Tree<TNode>()
where TNode : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<TTree> Tree<TTree>(System.Func<ExRam.Gremlinq.Core.ITreeBuilder, ExRam.Gremlinq.Core.ITreeBuilderResult<TTree>> continuation)
where TTree : ExRam.Gremlinq.Core.ITree;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ TQuery Select<TQuery, TElement>(ExRam.Gremlinq.Core.StepLabel<TQuery, TElement>
ExRam.Gremlinq.Core.StepLabel<T15> label15,
ExRam.Gremlinq.Core.StepLabel<T16> label16);
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<object>> Tree();
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TRoot>> Tree<TRoot>()
where TRoot : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TNode>> Tree<TNode>()
where TNode : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<TTree> Tree<TTree>(System.Func<ExRam.Gremlinq.Core.ITreeBuilder, ExRam.Gremlinq.Core.ITreeBuilderResult<TTree>> continuation)
where TTree : ExRam.Gremlinq.Core.ITree;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ TQuery Select<TQuery, TElement>(ExRam.Gremlinq.Core.StepLabel<TQuery, TElement>
ExRam.Gremlinq.Core.StepLabel<T15> label15,
ExRam.Gremlinq.Core.StepLabel<T16> label16);
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<object>> Tree();
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TRoot>> Tree<TRoot>()
where TRoot : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TNode>> Tree<TNode>()
where TNode : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<TTree> Tree<TTree>(System.Func<ExRam.Gremlinq.Core.ITreeBuilder, ExRam.Gremlinq.Core.ITreeBuilderResult<TTree>> continuation)
where TTree : ExRam.Gremlinq.Core.ITree;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ TQuery Select<TQuery, TElement>(ExRam.Gremlinq.Core.StepLabel<TQuery, TElement>
ExRam.Gremlinq.Core.StepLabel<T15> label15,
ExRam.Gremlinq.Core.StepLabel<T16> label16);
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<object>> Tree();
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TRoot>> Tree<TRoot>()
where TRoot : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<ExRam.Gremlinq.Core.Tree<TNode>> Tree<TNode>()
where TNode : notnull;
ExRam.Gremlinq.Core.IGremlinQuery<TTree> Tree<TTree>(System.Func<ExRam.Gremlinq.Core.ITreeBuilder, ExRam.Gremlinq.Core.ITreeBuilderResult<TTree>> continuation)
where TTree : ExRam.Gremlinq.Core.ITree;
}
Expand Down

0 comments on commit 5a841e6

Please sign in to comment.