Skip to content

Feature/fix deprecation on show dialog#44

Merged
cschar merged 7 commits into
mainfrom
feature/fix-deprecation-on-show-dialog
Mar 15, 2026
Merged

Feature/fix deprecation on show dialog#44
cschar merged 7 commits into
mainfrom
feature/fix-deprecation-on-show-dialog

Conversation

@cschar
Copy link
Copy Markdown
Owner

@cschar cschar commented Mar 15, 2026

No description provided.

@github-actions
Copy link
Copy Markdown
Contributor

Qodana for JVM

572 new problems were found

Inspection name Severity Problems
Field may be 'final' 🔶 Warning 141
Unused import 🔶 Warning 62
Javadoc declaration problems 🔶 Warning 36
Redundant type cast 🔶 Warning 28
Field can be local variable 🔶 Warning 25
Nullability and data flow problems 🔶 Warning 23
Unused assignment 🔶 Warning 22
Integer division in floating-point context 🔶 Warning 18
Access static member via instance reference 🔶 Warning 15
Incorrect string capitalization 🔶 Warning 9
Call to 'printStackTrace()' 🔶 Warning 9
Redundant local variable 🔶 Warning 9
'String.equals()' can be replaced with 'String.isEmpty()' 🔶 Warning 8
Unnecessary semicolon 🔶 Warning 7
Empty class initializer 🔶 Warning 4
Statement with empty body 🔶 Warning 4
Possibly lossy implicit cast in compound assignment 🔶 Warning 4
'@Serial' annotation can be used 🔶 Warning 4
String concatenation as argument to 'StringBuilder.append()' call 🔶 Warning 4
Suspicious variable/parameter name combination 🔶 Warning 4
Unnecessary call to 'toString()' 🔶 Warning 4
C-style array declaration 🔶 Warning 3
'size() == 0' can be replaced with 'isEmpty()' 🔶 Warning 3
Redundant 'if' statement 🔶 Warning 3
Busy wait 🔶 Warning 2
Catch block may ignore exception 🔶 Warning 2
Inner class may be 'static' 🔶 Warning 2
Redundant call to 'String.format()' 🔶 Warning 2
Unnecessary modifier 🔶 Warning 2
Too weak variable type leads to unnecessary cast 🔶 Warning 1
Caught exception is immediately rethrown 🔶 Warning 1
Early loop exit in 'if' condition 🔶 Warning 1
Result of method call ignored 🔶 Warning 1
Unused import directive 🔶 Warning 1
Method name same as class name 🔶 Warning 1
Mismatched read and write of array 🔶 Warning 1
Mismatched query and update of collection 🔶 Warning 1
@NotNull/@Nullable problems 🔶 Warning 1
Optional.get() is called without isPresent() check 🔶 Warning 1
Value passed as parameter never read 🔶 Warning 1
Pointless arithmetic expression 🔶 Warning 1
Local variable used and declared in different 'switch' branches 🔶 Warning 1
'Collection.toArray()' call style 🔶 Warning 1
Unnecessary 'return' statement 🔶 Warning 1
Wrapper type may be primitive 🔶 Warning 1
Commented out code ◽️ Notice 85
Method can be extracted ◽️ Notice 11
Constant values ◽️ Notice 1

💡 Qodana analysis was run in the pull request mode: only the changed files were checked

View the detailed Qodana report

To be able to view the detailed Qodana report, you can either:

To get *.log files or any other Qodana artifacts, run the action with upload-result option set to true,
so that the action will upload the files as the job artifacts:

      - name: 'Qodana Scan'
        uses: JetBrains/qodana-action@v2024.1.5
        with:
          upload-result: true
Contact Qodana team

Contact us at qodana-support@jetbrains.com

@github-actions
Copy link
Copy Markdown
Contributor

Qodana for JVM

570 new problems were found

Inspection name Severity Problems
Field may be 'final' 🔶 Warning 141
Unused import 🔶 Warning 62
Javadoc declaration problems 🔶 Warning 36
Redundant type cast 🔶 Warning 28
Field can be local variable 🔶 Warning 25
Nullability and data flow problems 🔶 Warning 22
Unused assignment 🔶 Warning 22
Integer division in floating-point context 🔶 Warning 18
Access static member via instance reference 🔶 Warning 15
Incorrect string capitalization 🔶 Warning 9
Call to 'printStackTrace()' 🔶 Warning 9
Redundant local variable 🔶 Warning 9
'String.equals()' can be replaced with 'String.isEmpty()' 🔶 Warning 8
Unnecessary semicolon 🔶 Warning 7
Empty class initializer 🔶 Warning 4
Statement with empty body 🔶 Warning 4
Possibly lossy implicit cast in compound assignment 🔶 Warning 4
'@Serial' annotation can be used 🔶 Warning 4
String concatenation as argument to 'StringBuilder.append()' call 🔶 Warning 4
Suspicious variable/parameter name combination 🔶 Warning 4
Unnecessary call to 'toString()' 🔶 Warning 4
C-style array declaration 🔶 Warning 3
'size() == 0' can be replaced with 'isEmpty()' 🔶 Warning 3
Redundant 'if' statement 🔶 Warning 3
Busy wait 🔶 Warning 2
Catch block may ignore exception 🔶 Warning 2
Inner class may be 'static' 🔶 Warning 2
Redundant call to 'String.format()' 🔶 Warning 2
Unnecessary modifier 🔶 Warning 2
Too weak variable type leads to unnecessary cast 🔶 Warning 1
Caught exception is immediately rethrown 🔶 Warning 1
Early loop exit in 'if' condition 🔶 Warning 1
Result of method call ignored 🔶 Warning 1
Method name same as class name 🔶 Warning 1
Mismatched read and write of array 🔶 Warning 1
Mismatched query and update of collection 🔶 Warning 1
@NotNull/@Nullable problems 🔶 Warning 1
Optional.get() is called without isPresent() check 🔶 Warning 1
Value passed as parameter never read 🔶 Warning 1
Pointless arithmetic expression 🔶 Warning 1
Local variable used and declared in different 'switch' branches 🔶 Warning 1
'Collection.toArray()' call style 🔶 Warning 1
Unnecessary 'return' statement 🔶 Warning 1
Wrapper type may be primitive 🔶 Warning 1
Commented out code ◽️ Notice 85
Method can be extracted ◽️ Notice 11
Constant values ◽️ Notice 1

💡 Qodana analysis was run in the pull request mode: only the changed files were checked

View the detailed Qodana report

To be able to view the detailed Qodana report, you can either:

To get *.log files or any other Qodana artifacts, run the action with upload-result option set to true,
so that the action will upload the files as the job artifacts:

      - name: 'Qodana Scan'
        uses: JetBrains/qodana-action@v2025.1.1
        with:
          upload-result: true
Contact Qodana team

Contact us at qodana-support@jetbrains.com

@cschar cschar merged commit 6dc67a1 into main Mar 15, 2026
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant