[
https://issues.apache.org/jira/browse/AVRO-3497?focusedWorklogId=759418&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-759418
]
ASF GitHub Bot logged work on AVRO-3497:
----------------------------------------
Author: ASF GitHub Bot
Created on: 20/Apr/22 17:09
Start Date: 20/Apr/22 17:09
Worklog Time Spent: 10m
Work Description: KyleSchoonover commented on PR #1658:
URL: https://github.com/apache/avro/pull/1658#issuecomment-1104196813
@zcsizmadia and @martin-g
Issue Time Tracking
-------------------
Worklog Id: (was: 759418)
Time Spent: 1h 10m (was: 1h)
> 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: 1h 10m
> 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)