Skip to content

Commit

Permalink
Removing extraneous AllowMultiple = false directives.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewc committed Oct 26, 2015
1 parent c758d35 commit 9c0c80b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Microsoft.Azure.WebJobs
/// This attribute can be applied at the parameter/method/class level, and the precedence
/// is in that order.
/// </remarks>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Parameter, AllowMultiple = false)]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Parameter)]
public sealed class ServiceBusAccountAttribute : Attribute
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Azure.WebJobs/DisableAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.Azure.WebJobs
/// started. The attribute only affects triggered functions.
/// </remarks>
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Parameter, AllowMultiple = false)]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Parameter)]
public sealed class DisableAttribute : Attribute
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Azure.WebJobs/StorageAccountAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Microsoft.Azure.WebJobs
/// This attribute can be applied at the parameter/method/class level, and the precedence
/// is in that order.
/// </remarks>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Parameter, AllowMultiple = false)]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Parameter)]
public sealed class StorageAccountAttribute : Attribute
{
/// <summary>
Expand Down

0 comments on commit 9c0c80b

Please sign in to comment.