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:
authorMarek Safar <marek.safar@gmail.com>2004-03-17 10:52:25 +0300
committerMarek Safar <marek.safar@gmail.com>2004-03-17 10:52:25 +0300
commit6ec625f888d8e78a179b318b5291dd8d33022ef7 (patch)
tree08e68dbe2b25e734d9cd31672b493f6c19523fd0
parentfc9dd645189fd167ebdf1aa8517639eb03ddeeb6 (diff)
2004-03-17 Marek Safar <marek.safar@seznam.cz>
* interface.cs: In all interface classes removed redundant member initialization. svn path=/trunk/mcs/; revision=24214
-rwxr-xr-xmcs/mcs/ChangeLog5
-rwxr-xr-xmcs/mcs/interface.cs4
2 files changed, 5 insertions, 4 deletions
diff --git a/mcs/mcs/ChangeLog b/mcs/mcs/ChangeLog
index 1eb1f40c54e..28e86440bea 100755
--- a/mcs/mcs/ChangeLog
+++ b/mcs/mcs/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-17 Marek Safar <marek.safar@seznam.cz>
+
+ * interface.cs: In all interface classes removed redundant
+ member initialization.
+
2004-03-16 Martin Baulig <martin@ximian.com>
* class.cs (TypeContainer.GetClassBases): Fix the CS0528 check.
diff --git a/mcs/mcs/interface.cs b/mcs/mcs/interface.cs
index 4df0b7db359..0777935f99b 100755
--- a/mcs/mcs/interface.cs
+++ b/mcs/mcs/interface.cs
@@ -1092,7 +1092,6 @@ namespace Mono.CSharp {
Location loc)
: base (type, name, mod_flags, attrs, loc)
{
- ModFlags = mod_flags;
}
public override string GetSignatureForError () {
@@ -1117,7 +1116,6 @@ namespace Mono.CSharp {
: base (return_type, name, mod_flags, attrs, l)
{
this.Parameters = args;
- ModFlags = mod_flags;
}
public override EmitContext Emit(TypeContainer tc, DeclSpace ds) {
@@ -1174,7 +1172,6 @@ namespace Mono.CSharp {
Attributes set_attrs, Location loc)
: base (type, name, mod_flags, has_get, has_set, prop_attrs, get_attrs, set_attrs, loc)
{
- ModFlags = mod_flags;
}
public override string GetSignatureForError () {
@@ -1191,7 +1188,6 @@ namespace Mono.CSharp {
: base (type, "Item", mod_flags, do_get, do_set, attrs, get_attrs, set_attrs, loc)
{
Parameters = args;
- ModFlags = mod_flags;
}
public override string GetSignatureForError() {