Skip to content

Commit

Permalink
Fix syntax error in ObsoleteAttributesNeedExplanation_VB test case (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-strecker-sonarsource committed Mar 24, 2023
1 parent f73ded1 commit 69e66ec
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ Class Noncompliant
End Sub

<Obsolete(Nothing)> ' Noncompliant
Sub WithNothing() { }
Sub WithNothing()
End Sub

<Obsolete("")> ' Noncompliant
Sub WithEmptyString() { }
Sub WithEmptyString()
End Sub

<Obsolete(" ")> ' Noncompliant
Sub WithWhiteSpace() { }
Sub WithWhiteSpace()
End Sub

<Obsolete("", True)> ' Noncompliant
Expand Down

0 comments on commit 69e66ec

Please sign in to comment.