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

Loading…
Cancel
Save