Merge XPEvo fixed/changes into main repository #538
GitHub Actions / Qodana for .NET
completed
Oct 27, 2024 in 0s
8 new problems found by Qodana for .NET
Qodana for .NET
6 new problems were found
Inspection name | Severity | Problems |
---|---|---|
Redundant using directive |
🔶 Warning | 2 |
Async function without await expression |
🔶 Warning | 1 |
Async method invocation without await expression |
🔶 Warning | 1 |
Cannot convert null literal to non-nullable reference type. |
🔶 Warning | 1 |
Virtual member call in constructor |
🔶 Warning | 1 |
💡 Qodana analysis was run in the pull request mode: only the changed files were checked
☁️ View the detailed Qodana report
Detected 124 dependencies
Third-party software list
This page lists the third-party software dependencies used in EvoSC
Contact Qodana team
Contact us at [email protected]
- Or via our issue tracker: https://jb.gg/qodana-issue
- Or share your feedback: https://jb.gg/qodana-discussions
Details
This result was published with Qodana GitHub Action
Annotations
github-actions / Qodana for .NET
Async function without await expression
This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
github-actions / Qodana for .NET
Async method invocation without await expression
Because this call is not awaited, execution of the current method continues before the call is completed. Consider applying the 'await' operator to the result of the call.
github-actions / Qodana for .NET
Cannot convert null literal to non-nullable reference type.
Cannot convert null literal to non-nullable reference type
github-actions / Qodana for .NET
Redundant using directive
Using directive is not required by the code and can be safely removed
github-actions / Qodana for .NET
Redundant using directive
Using directive is not required by the code and can be safely removed
github-actions / Qodana for .NET
Virtual member call in constructor
Virtual member call in constructor
Loading