Browse Source

Updated test sample files.

pull/70/head
Artur Zgodziski 15 years ago
parent
commit
d0a73d1a5e
  1. 8
      ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributeSamples.cs

8
ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributeSamples.cs

@ -134,7 +134,6 @@ namespace AppliedToPropertySet
[MyAttribute] [MyAttribute]
set set
{ {
return;
} }
} }
} }
@ -177,7 +176,7 @@ namespace AppliedToParameter
} }
public class MyClass public class MyClass
{ {
public void Method([MyAttribute]int val) public void Method([MyAttribute] int val)
{ {
} }
} }
@ -204,7 +203,6 @@ namespace NamedInitializerPropertyString
} }
set set
{ {
return;
} }
} }
} }
@ -227,7 +225,6 @@ namespace NamedInitializerPropertyType
} }
set set
{ {
return;
} }
} }
} }
@ -250,7 +247,6 @@ namespace NamedInitializerPropertyEnum
} }
set set
{ {
return;
} }
} }
} }
@ -321,7 +317,6 @@ namespace TargetPropertySetParam
[param: MyAttribute] [param: MyAttribute]
set set
{ {
return;
} }
} }
} }
@ -344,7 +339,6 @@ namespace TargetPropertySetReturn
[return: MyAttribute] [return: MyAttribute]
set set
{ {
return;
} }
} }
} }

Loading…
Cancel
Save