Skip to content
This repository was archived by the owner on Dec 18, 2023. It is now read-only.

Commit 0a6e2f7

Browse files
Sergey KanzhelevSergey Kanzhelev
authored andcommitted
whitespaces
1 parent 683ddcb commit 0a6e2f7

60 files changed

Lines changed: 201 additions & 214 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace OpenCensus.Stats.Measures
22
{
3-
public interface IMeasureDouble: IMeasure
3+
public interface IMeasureDouble : IMeasure
44
{
55
}
66
}

src/OpenCensus/Api/Tags/ITagger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public interface ITagger
1313
ITagContextBuilder ToBuilder(ITagContext tags);
1414

1515
ITagContextBuilder CurrentBuilder { get; }
16-
16+
1717
IScope WithTagContext(ITagContext tags);
1818
}
1919
}

src/OpenCensus/Api/Tags/ITags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public interface ITags
77
ITagger Tagger { get; }
88

99
ITagPropagationComponent TagPropagationComponent { get; }
10-
10+
1111
TaggingState State { get; }
1212
}
1313
}

src/OpenCensus/Api/Trace/Config/ITraceParams.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-

2-
namespace OpenCensus.Trace.Config
1+
namespace OpenCensus.Trace.Config
32
{
43
public interface ITraceParams
54
{

src/OpenCensus/Api/Trace/Internal/IRandomGenerator.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-

2-
3-
namespace OpenCensus.Trace.Internal
1+
namespace OpenCensus.Trace.Internal
42
{
53
public interface IRandomGenerator
64
{

src/OpenCensus/Impl/Stats/Aggregation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
public abstract class Aggregation : IAggregation
77
{
8-
public abstract M Match<M>(Func<ISum, M> p0, Func<ICount, M> p1, Func<IMean, M> p2, Func<IDistribution, M> p3, Func<ILastValue,M> p4, Func<IAggregation, M> p5);
8+
public abstract M Match<M>(Func<ISum, M> p0, Func<ICount, M> p1, Func<IMean, M> p2, Func<IDistribution, M> p3, Func<ILastValue, M> p4, Func<IAggregation, M> p5);
99
}
1010
}

src/OpenCensus/Impl/Stats/AggregationData.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
public abstract class AggregationData : IAggregationData
77
{
88
public abstract M Match<M>(
9-
Func<ISumDataDouble, M> p0,
10-
Func<ISumDataLong, M> p1,
11-
Func<ICountData, M> p2,
12-
Func<IMeanData, M> p3,
9+
Func<ISumDataDouble, M> p0,
10+
Func<ISumDataLong, M> p1,
11+
Func<ICountData, M> p2,
12+
Func<IMeanData, M> p3,
1313
Func<IDistributionData, M> p4,
1414
Func<ILastValueDataDouble, M> p5,
1515
Func<ILastValueDataLong, M> p6,

src/OpenCensus/Impl/Stats/Aggregations/Count.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public static ICount Create()
1212
{
1313
return INSTANCE;
1414
}
15-
15+
1616
public override M Match<M>(Func<ISum, M> p0, Func<ICount, M> p1, Func<IMean, M> p2, Func<IDistribution, M> p3, Func<ILastValue, M> p4, Func<IAggregation, M> p5)
1717
{
1818
return p1.Invoke(this);

src/OpenCensus/Impl/Stats/Aggregations/DistributionData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internal DistributionData(double mean, long count, double min, double max, doubl
3434
this.BucketCounts = bucketCounts;
3535
}
3636

37-
public static IDistributionData Create(double mean,long count, double min, double max, double sumOfSquaredDeviations, IList<long> bucketCounts)
37+
public static IDistributionData Create(double mean, long count, double min, double max, double sumOfSquaredDeviations, IList<long> bucketCounts)
3838
{
3939
if (!double.IsPositiveInfinity(min) || !double.IsNegativeInfinity(max))
4040
{

src/OpenCensus/Impl/Stats/Aggregations/Mean.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
using System;
44

5-
public sealed class Mean : Aggregation , IMean
5+
public sealed class Mean : Aggregation, IMean
66
{
77
internal Mean() { }
88

0 commit comments

Comments
 (0)