Skip to content

refactor: extract Bech32 generator constant to class level - #60

Merged
tcheeric merged 4 commits into
release/0.1.4from
copilot/sub-pr-57-another-one
Nov 2, 2025
Merged

refactor: extract Bech32 generator constant to class level#60
tcheeric merged 4 commits into
release/0.1.4from
copilot/sub-pr-57-another-one

Merge branch 'release/0.1.4' into copilot/sub-pr-57-another-one

87e8d7d
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Qodana Community for JVM completed Nov 2, 2025 in 0s

2 new problems found by Qodana Community for JVM

Qodana Community for JVM

2 new problems were found

Inspection name Severity Problems
AutoCloseable used without 'try'-with-resources 🔶 Warning 1
Simplifiable conditional expression 🔶 Warning 1

☁️ View the detailed Qodana report

Contact Qodana team

Contact us at qodana-support@jetbrains.com

Details

This result was published with Qodana GitHub Action

Annotations

Check warning on line 134 in phoenixd-rest/src/main/java/xyz/tcheeric/phoenixd/operation/AbstractOperation.java

See this annotation in the file changed.

@github-actions github-actions / Qodana Community for JVM

AutoCloseable used without 'try'-with-resources

'HttpClient' used without 'try'-with-resources statement

Check warning on line 132 in phoenixd-base/src/main/java/xyz/tcheeric/phoenixd/common/rest/util/Configuration.java

See this annotation in the file changed.

@github-actions github-actions / Qodana Community for JVM

Simplifiable conditional expression

`value != null ? Boolean.parseBoolean(value) : false` can be simplified to 'value != null \&\& Boolean.parseBoolean(value)'