Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alanwest committed Mar 18, 2023
1 parent 12bef54 commit e96326b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenTelemetry/Metrics/ExponentialHistogramBuckets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace OpenTelemetry.Metrics;
public sealed class ExponentialHistogramBuckets
{
private long[] buckets = Array.Empty<long>();
private int size = 0;
private int size;

internal ExponentialHistogramBuckets()
{
Expand Down Expand Up @@ -60,8 +60,8 @@ internal ExponentialHistogramBuckets Copy()
public struct Enumerator
{
private readonly long[] buckets;
private readonly int size;
private int index;
private int size;

internal Enumerator(long[] buckets, int size)
{
Expand Down

0 comments on commit e96326b

Please sign in to comment.