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 12bef54 commit e96326bCopy full SHA for e96326b
src/OpenTelemetry/Metrics/ExponentialHistogramBuckets.cs
@@ -21,7 +21,7 @@ namespace OpenTelemetry.Metrics;
21
public sealed class ExponentialHistogramBuckets
22
{
23
private long[] buckets = Array.Empty<long>();
24
- private int size = 0;
+ private int size;
25
26
internal ExponentialHistogramBuckets()
27
@@ -60,8 +60,8 @@ internal ExponentialHistogramBuckets Copy()
60
public struct Enumerator
61
62
private readonly long[] buckets;
63
+ private readonly int size;
64
private int index;
- private int size;
65
66
internal Enumerator(long[] buckets, int size)
67
0 commit comments