Skip to content

Commit

Permalink
removed useless comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Iristyle committed Jan 20, 2012
1 parent 801afa5 commit 93eb185
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/NanoTube/Core/MetricExtensions.cs
Expand Up @@ -9,7 +9,6 @@ namespace NanoTube
public static class MetricExtensions
{
/// <summary> Lazy converts a list of metrics to strings based on the given MetricFormat. </summary>
/// <remarks> 1/19/2012. </remarks>
/// <param name="metrics"> The metrics to act on. </param>
/// <param name="format"> Describes the format to use. </param>
/// <returns> An enumerator that allows foreach to be used to process the strings in this collection. </returns>
Expand All @@ -22,7 +21,6 @@ public static IEnumerable<string> ToStrings(this IEnumerable<IMetric> metrics, M
}

/// <summary> An IMetric extension method that converts a given metric value into a string representation based on the given MetricFormat. </summary>
/// <remarks> 1/19/2012. </remarks>
/// <param name="metric"> The metric to act on. </param>
/// <param name="format"> Describes the format to use. </param>
/// <returns> A string representation of this object. </returns>
Expand Down
1 change: 0 additions & 1 deletion src/NanoTube/MetricFormat.cs
Expand Up @@ -5,7 +5,6 @@ namespace NanoTube
using System.Linq;

/// <summary> A set of options for how metrics should be represented when stringified. </summary>
/// <remarks> 1/20/2012. </remarks>
public enum MetricFormat
{
/// <summary> Using the Etsy StatsD format <a href="https://github.com/etsy/statsd" />. </summary>
Expand Down
1 change: 0 additions & 1 deletion src/NanoTube/Net/PacketBuilder.cs
Expand Up @@ -6,7 +6,6 @@ namespace NanoTube.Net
using System.Text;

/// <summary> A helper class for turning a list of strings into a Udp packet. </summary>
/// <remarks> 1/19/2012. </remarks>
public static class PacketBuilder
{
private static byte[] _terminator = Encoding.UTF8.GetBytes("\n");
Expand Down
1 change: 0 additions & 1 deletion src/NanoTube/Net/UdpMessenger.cs
Expand Up @@ -12,7 +12,6 @@
/// A class that performs Udp communications with a remote host. It can either Send metrics data all in one shot, or it can stream a
/// specific number of packets at a time over an infinite IEnumerable.
/// </summary>
/// <remarks> 1/19/2012. </remarks>
public class UdpMessenger : IDisposable
{
private readonly static SimpleObjectPool<SocketAsyncEventArgs> _eventArgsPool
Expand Down
1 change: 0 additions & 1 deletion src/NanoTube/Support/DateTimeExtensions.cs
Expand Up @@ -12,7 +12,6 @@ public static class DateTimeExtensions
private readonly static DateTime _epoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);

/// <summary> Returns the DateTime as the number of seconds since the epoch (1970), which is Unix time. </summary>
/// <remarks> 1/20/2012. </remarks>
/// <param name="dateTime"> The dateTime to act on. </param>
/// <returns> A number of seconds since the epoch. </returns>
public static double AsUnixTime(this DateTime dateTime)
Expand Down

0 comments on commit 93eb185

Please sign in to comment.