Skip to content

Commit c016d99

Browse files
committed
Merge pull request #2014 from jonyadamit/buckets-path
Changed BucketsPath from internal to public
2 parents 05c4b04 + 65435d0 commit c016d99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Nest/Aggregations/Pipeline/BucketsPath.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public interface IBucketsPath { }
1010

1111
public class SingleBucketsPath : IBucketsPath
1212
{
13-
internal string BucketsPath { get; private set; }
13+
public string BucketsPath { get; private set; }
1414

1515
public SingleBucketsPath(string bucketsPath)
1616
{
@@ -45,7 +45,7 @@ public MultiBucketsPathDescriptor() : base(new MultiBucketsPath()) { }
4545

4646
public class BucketsPathJsonConverter : JsonConverter
4747
{
48-
public override bool CanConvert(Type objectType) =>
48+
public override bool CanConvert(Type objectType) =>
4949
typeof(SingleBucketsPath) == objectType || typeof(MultiBucketsPath) == objectType;
5050

5151
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)

0 commit comments

Comments
 (0)