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:
authorUmadevi S <uma@mono-cvs.ximian.com>2004-05-12 14:22:10 +0400
committerUmadevi S <uma@mono-cvs.ximian.com>2004-05-12 14:22:10 +0400
commit810d737cda861d465475cf626c8cc2599aa5bd48 (patch)
treef5585d56f360d6da4d40396859e7c533e100fc7a /mcs/class/System.Data/Mono.Data.SqlExpressions
parente00a9131526e08573d73f1c8b628dede9ddbbebb (diff)
2004-05-12 Umadevi S <sumadevi@novell.com>
* ArithmeticExpression.cs - made class internal svn path=/trunk/mcs/; revision=27153
Diffstat (limited to 'mcs/class/System.Data/Mono.Data.SqlExpressions')
-rw-r--r--mcs/class/System.Data/Mono.Data.SqlExpressions/ArithmeticExpressions.cs4
-rw-r--r--mcs/class/System.Data/Mono.Data.SqlExpressions/ChangeLog4
2 files changed, 6 insertions, 2 deletions
diff --git a/mcs/class/System.Data/Mono.Data.SqlExpressions/ArithmeticExpressions.cs b/mcs/class/System.Data/Mono.Data.SqlExpressions/ArithmeticExpressions.cs
index 4b140b22c88..1ba7472d12f 100644
--- a/mcs/class/System.Data/Mono.Data.SqlExpressions/ArithmeticExpressions.cs
+++ b/mcs/class/System.Data/Mono.Data.SqlExpressions/ArithmeticExpressions.cs
@@ -12,7 +12,7 @@ using System.Collections;
using System.Data;
namespace Mono.Data.SqlExpressions {
- public class Negative : UnaryExpression {
+ internal class Negative : UnaryExpression {
public Negative (IExpression e) : base (e) {}
override public object Eval (DataRow row)
@@ -21,7 +21,7 @@ namespace Mono.Data.SqlExpressions {
}
}
- public class ArithmeticOperation : BinaryOpExpression {
+ internal class ArithmeticOperation : BinaryOpExpression {
public ArithmeticOperation (Operation op, IExpression e1, IExpression e2) : base (op, e1, e2) {}
override public object Eval (DataRow row)
diff --git a/mcs/class/System.Data/Mono.Data.SqlExpressions/ChangeLog b/mcs/class/System.Data/Mono.Data.SqlExpressions/ChangeLog
index 835e3a74970..b61b85e6155 100644
--- a/mcs/class/System.Data/Mono.Data.SqlExpressions/ChangeLog
+++ b/mcs/class/System.Data/Mono.Data.SqlExpressions/ChangeLog
@@ -1,5 +1,9 @@
+2004-05-12 Umadevi S <sumadevi@novell.com>
+ * ArthimeticExpression.cs - made class internal
+
2004-05012 Umadevi S <sumadevi@novell.com>
* Aggregation.cs - made class/enums/interfaces internal
+
2004-05-05 Atsushi Enomoto <atsushi@ximian.com>
* ArithmeticExpressions.cs: avoid null exception on add operation.