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

Commit 5bf13ea

Browse files
Sergey KanzhelevSergey Kanzhelev
authored andcommitted
reorder using
1 parent 87a6ed2 commit 5bf13ea

267 files changed

Lines changed: 845 additions & 1536 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/IClock.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
using OpenCensus.Trace;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
5-
6-
namespace OpenCensus.Common
1+
namespace OpenCensus.Common
72
{
83
public interface IClock
94
{

src/OpenCensus/Api/Common/IDuration.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Common
1+
namespace OpenCensus.Common
62
{
3+
using System;
4+
75
public interface IDuration : IComparable<IDuration>
86
{
97
long Seconds { get; }

src/OpenCensus/Api/Common/IScope.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Common
1+
namespace OpenCensus.Common
62
{
3+
using System;
4+
75
public interface IScope : IDisposable
86
{
97
}

src/OpenCensus/Api/Common/ITimestamp.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Common
1+
namespace OpenCensus.Common
62
{
3+
using System;
4+
75
public interface ITimestamp : IComparable<ITimestamp>
86
{
97
long Seconds { get; }

src/OpenCensus/Api/Internal/IEventQueue.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Internal
1+
namespace OpenCensus.Internal
62
{
73
public interface IEventQueue
84
{

src/OpenCensus/Api/Internal/IEventQueueEntry.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Internal
1+
namespace OpenCensus.Internal
62
{
73
public interface IEventQueueEntry
84
{

src/OpenCensus/Api/Internal/ITimestampConverter.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
using OpenCensus.Common;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
5-
6-
namespace OpenCensus.Internal
1+
namespace OpenCensus.Internal
72
{
3+
using OpenCensus.Common;
4+
85
public interface ITimestampConverter
96
{
107
ITimestamp ConvertNanoTime(long nanoTime);

src/OpenCensus/Api/Stats/Aggregations/ICount.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Stats.Aggregations
1+
namespace OpenCensus.Stats.Aggregations
62
{
73
public interface ICount : IAggregation
84
{

src/OpenCensus/Api/Stats/Aggregations/ICountData.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Stats.Aggregations
1+
namespace OpenCensus.Stats.Aggregations
62
{
73
public interface ICountData : IAggregationData
84
{

src/OpenCensus/Api/Stats/Aggregations/IDistribution.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace OpenCensus.Stats.Aggregations
1+
namespace OpenCensus.Stats.Aggregations
62
{
73
public interface IDistribution : IAggregation
84
{

0 commit comments

Comments
 (0)