[
https://issues.apache.org/jira/browse/AVRO-3497?focusedWorklogId=759527&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-759527
]
ASF GitHub Bot logged work on AVRO-3497:
----------------------------------------
Author: ASF GitHub Bot
Created on: 20/Apr/22 19:57
Start Date: 20/Apr/22 19:57
Worklog Time Spent: 10m
Work Description: martin-g merged PR #1658:
URL: https://github.com/apache/avro/pull/1658
Issue Time Tracking
-------------------
Worklog Id: (was: 759527)
Time Spent: 2h 40m (was: 2.5h)
> Fix IDE0075 Simplify conditional expression
> -------------------------------------------
>
> Key: AVRO-3497
> URL: https://issues.apache.org/jira/browse/AVRO-3497
> Project: Apache Avro
> Issue Type: Sub-task
> Components: csharp
> Reporter: Kyle Schoonover
> Priority: Major
> Labels: pull-request-available
> Time Spent: 2h 40m
> Remaining Estimate: 0h
>
> {code:java}
> // dotnet_style_prefer_simplified_boolean_expressions = true
> var result1 = M1() && M2();
> var result2 = M1() || M2();
> // dotnet_style_prefer_simplified_boolean_expressions = false
> var result1 = M1() && M2() ? true : false;
> var result2 = M1() ? true : M2(); {code}
--
This message was sent by Atlassian Jira
(v8.20.7#820007)