From 8661658b91da5dc33094e69f5af511f15f8adc91 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sat, 17 Nov 2012 18:13:46 +0000 Subject: A few real tabs wound up in the C# code...somehow. --- cs-dotnet/src/gatsdictionary.cs | 2 +- cs-dotnet/src/gatsfloat.cs | 12 ++++++------ cs-dotnet/src/gatsobject.cs | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cs-dotnet/src/gatsdictionary.cs b/cs-dotnet/src/gatsdictionary.cs index 77d088c..f80d3cb 100644 --- a/cs-dotnet/src/gatsdictionary.cs +++ b/cs-dotnet/src/gatsdictionary.cs @@ -34,7 +34,7 @@ namespace Com.Xagasoft.Gats /// use a GatsDictionary just like the .NET standard Dictionary. /// public class GatsDictionary : GatsObject, IDictionary -// ICollection>, +// ICollection>, // IEnumerable> { private Dictionary Value = diff --git a/cs-dotnet/src/gatsfloat.cs b/cs-dotnet/src/gatsfloat.cs index 9763855..1fe6c00 100644 --- a/cs-dotnet/src/gatsfloat.cs +++ b/cs-dotnet/src/gatsfloat.cs @@ -64,12 +64,12 @@ namespace Com.Xagasoft.Gats throw new GatsException( GatsException.Type.PrematureEnd ); switch( (char)subType ) { - case 'N': Value = -Double.NaN; break; - case 'n': Value = Double.NaN; break; - case 'I': Value = Double.NegativeInfinity; break; - case 'i': Value = Double.PositiveInfinity; break; - case 'Z': Value = -0.0; break; - case 'z': Value = 0.0; break; + case 'N': Value = -Double.NaN; break; + case 'n': Value = Double.NaN; break; + case 'I': Value = Double.NegativeInfinity; break; + case 'i': Value = Double.PositiveInfinity; break; + case 'Z': Value = -0.0; break; + case 'z': Value = 0.0; break; } } else if( type == 'f' ) diff --git a/cs-dotnet/src/gatsobject.cs b/cs-dotnet/src/gatsobject.cs index 57da747..161bd3a 100644 --- a/cs-dotnet/src/gatsobject.cs +++ b/cs-dotnet/src/gatsobject.cs @@ -100,9 +100,9 @@ namespace Com.Xagasoft.Gats default: throw new GatsException( GatsException.Type.InvalidType ); - } + } - ret.Read( s, type ); + ret.Read( s, type ); return ret; } -- cgit v1.2.3