Skip to content

Commit

Permalink
Use attribute names without namespaces in a few places (dotnet/corecl…
Browse files Browse the repository at this point in the history
…r#13248)

Signed-off-by: dotnet-bot <[email protected]>

Commit migrated from dotnet/coreclr@69f1c3c
  • Loading branch information
dotnet-bot authored and jkotas committed Aug 7, 2017
1 parent d56a6cd commit f911b0a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/src/mscorlib/shared/System/Int64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public override bool Equals(Object obj)
return m_value == ((Int64)obj).m_value;
}

[System.Runtime.Versioning.NonVersionable]
[NonVersionable]
public bool Equals(Int64 obj)
{
return m_value == obj;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/src/mscorlib/shared/System/UInt16.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public override bool Equals(Object obj)
return m_value == ((UInt16)obj).m_value;
}

[System.Runtime.Versioning.NonVersionable]
[NonVersionable]
public bool Equals(UInt16 obj)
{
return m_value == obj;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/src/mscorlib/shared/System/UInt32.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public override bool Equals(Object obj)
return m_value == ((UInt32)obj).m_value;
}

[System.Runtime.Versioning.NonVersionable]
[NonVersionable]
public bool Equals(UInt32 obj)
{
return m_value == obj;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/src/mscorlib/shared/System/UInt64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public override bool Equals(Object obj)
return m_value == ((UInt64)obj).m_value;
}

[System.Runtime.Versioning.NonVersionable]
[NonVersionable]
public bool Equals(UInt64 obj)
{
return m_value == obj;
Expand Down

0 comments on commit f911b0a

Please sign in to comment.