We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e009b commit 64e88b4Copy full SHA for 64e88b4
src/Elasticsearch.Net/Domain/Response/ElasticsearchResponse.cs
@@ -19,11 +19,9 @@
19
20
namespace Elasticsearch.Net
21
{
22
- //TODO document and possibly rename some of the properties
23
-
24
public static class ElasticsearchResponse
25
26
- public static ElasticsearchResponse<TTo> CloneFrom<TTo>(IElasticsearchResponse from, TTo to)
+ internal static ElasticsearchResponse<TTo> CloneFrom<TTo>(IElasticsearchResponse from, TTo to)
27
28
var response = new ElasticsearchResponse<TTo>(from.Settings)
29
@@ -46,7 +44,6 @@ public static ElasticsearchResponse<TTo> CloneFrom<TTo>(IElasticsearchResponse f
46
44
}
47
45
48
49
50
public class ElasticsearchResponse<T> : IElasticsearchResponse
51
52
private static readonly string _printFormat;
0 commit comments