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

Commit 6379e7f

Browse files
Sergey KanzhelevSergey Kanzhelev
authored andcommitted
more whitespaces
1 parent 8802125 commit 6379e7f

87 files changed

Lines changed: 65 additions & 149 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/OpenCensus/Api/Common/ITimestamp.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ public interface ITimestamp : IComparable<ITimestamp>
1111
ITimestamp AddNanos(long nanosToAdd);
1212
ITimestamp AddDuration(IDuration duration);
1313
IDuration SubtractTimestamp(ITimestamp timestamp);
14-
1514
}
1615
}

src/OpenCensus/Api/Stats/IMeasure.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ M Match<M>(
1414
string Name { get; }
1515
string Description { get; }
1616
string Unit { get; }
17-
1817
}
1918
}

src/OpenCensus/Api/Trace/IMessageEvent.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ public interface IMessageEvent
1010
long MessageId { get; }
1111
long UncompressedMessageSize { get; }
1212
long CompressedMessageSize { get; }
13-
1413
}
1514
}

src/OpenCensus/Api/Trace/ISampler.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ public interface ISampler
88
{
99
string Description { get; }
1010
bool ShouldSample(ISpanContext parentContext, bool hasRemoteParent, ITraceId traceId, ISpanId spanId, string name, IList<ISpan> parentLinks);
11-
1211
}
1312
}

src/OpenCensus/Api/Trace/ITraceId.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ public interface ITraceId : IComparable<ITraceId>
1111
long LowerLong { get; }
1212
void CopyBytesTo(byte[] dest, int destOffset);
1313
string ToLowerBase16();
14-
1514
}
1615
}

src/OpenCensus/Impl/Common/DateTimeOffsetClock.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ public ITimestamp Now
2525
var nowSecTicks = nowNanoTicks / NANOS_PER_SECOND;
2626
var excessNanos = nowNanoTicks - (nowSecTicks * NANOS_PER_SECOND);
2727
return new Timestamp(nowSecTicks, (int)excessNanos);
28-
2928
}
30-
3129
}
3230

3331
public long NowNanos
@@ -38,6 +36,5 @@ public long NowNanos
3836
return millis * NANOS_PER_MILLI;
3937
}
4038
}
41-
4239
}
4340
}

src/OpenCensus/Impl/Common/Duration.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,5 @@ public override int GetHashCode()
8585
h ^= this.Nanos;
8686
return (int)h;
8787
}
88-
8988
}
9089
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,5 @@ public override int GetHashCode()
4646
int h = 1;
4747
return h;
4848
}
49-
5049
}
5150
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public override bool Equals(Object o)
4848
if (o is CountData)
4949
{
5050
CountData that = (CountData)o;
51-
return (this.Count == that.Count);
51+
return this.Count == that.Count;
5252
}
5353

5454
return false;
@@ -61,6 +61,5 @@ public override int GetHashCode()
6161
h ^= (this.Count >> 32) ^ this.Count;
6262
return (int)h;
6363
}
64-
6564
}
6665
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public override bool Equals(object o)
5151

5252
if (o is Distribution) {
5353
Distribution that = (Distribution)o;
54-
return (this.BucketBoundaries.Equals(that.BucketBoundaries));
54+
return this.BucketBoundaries.Equals(that.BucketBoundaries);
5555
}
5656

5757
return false;
@@ -64,6 +64,5 @@ public override int GetHashCode()
6464
h ^= this.BucketBoundaries.GetHashCode();
6565
return h;
6666
}
67-
6867
}
6968
}

0 commit comments

Comments
 (0)