Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlTypes.jvm/SqlGuid.cs')
-rw-r--r--mcs/class/System.Data/System.Data.SqlTypes.jvm/SqlGuid.cs126
1 files changed, 63 insertions, 63 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlTypes.jvm/SqlGuid.cs b/mcs/class/System.Data/System.Data.SqlTypes.jvm/SqlGuid.cs
index 3748d461b43..ff650261686 100644
--- a/mcs/class/System.Data/System.Data.SqlTypes.jvm/SqlGuid.cs
+++ b/mcs/class/System.Data/System.Data.SqlTypes.jvm/SqlGuid.cs
@@ -1,31 +1,31 @@
// System.Data.SqlTypes.SqlGuid
-//
-// Authors:
-// Konstantin Triger <kostat@mainsoft.com>
-// Boris Kirzner <borisk@mainsoft.com>
-//
-// (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+// Authors:
+// Konstantin Triger <kostat@mainsoft.com>
+// Boris Kirzner <borisk@mainsoft.com>
+//
+// (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
namespace System.Data.SqlTypes
@@ -76,22 +76,22 @@ namespace System.Data.SqlTypes
public int CompareTo(Object obj)
{
- if (obj == null)
- return 1;
-
- if (obj is SqlGuid)
- {
- SqlGuid g = (SqlGuid)obj;
-
- if (g.IsNull)
- return 1;
- if (this.IsNull)
- return -1;
-
- return this._value.CompareTo(g._value);
- }
-
- throw new ArgumentException("parameter obj is not SqlGuid : " + obj.GetType().Name);
+ if (obj == null)
+ return 1;
+
+ if (obj is SqlGuid)
+ {
+ SqlGuid g = (SqlGuid)obj;
+
+ if (g.IsNull)
+ return 1;
+ if (this.IsNull)
+ return -1;
+
+ return this._value.CompareTo(g._value);
+ }
+
+ throw new ArgumentException("parameter obj is not SqlGuid : " + obj.GetType().Name);
}
@@ -110,31 +110,31 @@ namespace System.Data.SqlTypes
public override bool Equals(Object obj)
{
- if (obj == null)
- return false;
-
- if (obj is SqlGuid)
- {
- SqlGuid g = (SqlGuid)obj;
-
- if (IsNull && g.IsNull)
- return true;
-
- if (IsNull || g.IsNull)
- return false;
-
- return _value == g._value;
- }
-
+ if (obj == null)
+ return false;
+
+ if (obj is SqlGuid)
+ {
+ SqlGuid g = (SqlGuid)obj;
+
+ if (IsNull && g.IsNull)
+ return true;
+
+ if (IsNull || g.IsNull)
+ return false;
+
+ return _value == g._value;
+ }
+
return false;
}
public override String ToString()
{
- if (IsNull)
- return "null";
-
-
+ if (IsNull)
+ return "null";
+
+
return _value.ToString();
}