Skip to content

Commit 8f51efe

Browse files
committed
Simplied names
Since `System` is in the `using` statements, there's no need to prefix `Attribute` and `AttributeUsage`.
1 parent b0c5a5e commit 8f51efe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

OnTopic/Attributes/AttributeSetterAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ namespace OnTopic.Attributes {
4040
/// <see cref="Topic.SetAttributeValue(String, String, Boolean?)"/>, which ensures that final parameter is set to false.
4141
/// </para>
4242
/// </remarks>
43-
[System.AttributeUsage(System.AttributeTargets.Property)]
44-
public sealed class AttributeSetterAttribute : System.Attribute {
43+
[AttributeUsage(AttributeTargets.Property)]
44+
public sealed class AttributeSetterAttribute : Attribute {
4545

4646
} //Class
4747
} //Namespace

0 commit comments

Comments
 (0)