You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2022/05/03 18:55:00 UTC

[jira] [Work logged] (AVRO-3499) Fix IDE0079 Remove unnecessary suppression

     [ https://issues.apache.org/jira/browse/AVRO-3499?focusedWorklogId=765642&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-765642 ]

ASF GitHub Bot logged work on AVRO-3499:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 03/May/22 18:54
            Start Date: 03/May/22 18:54
    Worklog Time Spent: 10m 
      Work Description: martin-g merged PR #1656:
URL: https://github.com/apache/avro/pull/1656




Issue Time Tracking
-------------------

    Worklog Id:     (was: 765642)
    Time Spent: 1h  (was: 50m)

> Fix IDE0079 Remove unnecessary suppression
> ------------------------------------------
>
>                 Key: AVRO-3499
>                 URL: https://issues.apache.org/jira/browse/AVRO-3499
>             Project: Apache Avro
>          Issue Type: Sub-task
>          Components: csharp
>            Reporter: Kyle Schoonover
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h
>  Remaining Estimate: 0h
>
> {code:java}
> class C1
> {
>     // Necessary pragma suppression
> #pragma warning disable IDE0051 // IDE0051: Remove unused member
>     private int UnusedMethod() => 0;
> #pragma warning restore IDE0051
>     // IDE0079: Unnecessary pragma suppression
> #pragma warning disable IDE0051 // IDE0051: Remove unused member
>     private int UsedMethod() => 0;
> #pragma warning restore IDE0051
>     public int PublicMethod() => UsedMethod();
> }
> class C2
> {
>     // Necessary SuppressMessage attribute suppression
>     [SuppressMessage("CodeQuality", "IDE0051:Remove unused private members", Justification = "<Pending>")]
>     private int _unusedField;
>     // IDE0079: Unnecessary SuppressMessage attribute suppression
>     [SuppressMessage("CodeQuality", "IDE0051:Remove unused private members", Justification = "<Pending>")]
>     private int _usedField;
>     public int PublicMethod2() => _usedField;
> } {code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)