Merge pull request #59 from Backbase/BB-Servicetoolkit-version-1.0.2 #191
10 new problems found by Qodana Community for JVM
Qodana Community for JVM
10 new problems were found
Inspection name | Severity | Problems |
---|---|---|
Incorrect string capitalization |
🔶 Warning | 4 |
'Enum.values()' is recommended to be replaced by 'Enum.entries' since 1.9 |
🔶 Warning | 1 |
Lambda argument inside parentheses |
◽️ Notice | 2 |
Const property naming convention |
◽️ Notice | 1 |
Class member can have 'private' visibility |
◽️ Notice | 1 |
Verbose nullability and emptiness check |
◽️ 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:
- Register at Qodana Cloud and configure the action
- Use GitHub Code Scanning with Qodana
- Host Qodana report at GitHub Pages
- Inspect and use
qodana.sarif.json
(see the Qodana SARIF format for details)
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/[email protected]
with:
upload-result: true
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
Check notice on line 9 in src/main/kotlin/com/backbase/bst/common/SsdkUtils.kt
github-actions / Qodana Community for JVM
Const property naming convention
Const property name `defaultPackageName` should not contain lowercase letters
Check warning on line 31 in src/main/kotlin/com/backbase/bst/actions/DefineEventDialog.kt
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'Event Name' is not properly capitalized. It should have sentence capitalization
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'Behaviour Extension Name' is not properly capitalized. It should have sentence capitalization
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'Route Extension Type' is not properly capitalized. It should have sentence capitalization
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'Service Name' is not properly capitalized. It should have sentence capitalization
github-actions / Qodana Community for JVM
'Enum.values()' is recommended to be replaced by 'Enum.entries' since 1.9
'Enum.values()' is recommended to be replaced by 'Enum.entries' since 1.9
Check notice on line 21 in src/main/kotlin/com/backbase/bst/actions/ConsumeEventDialog.kt
github-actions / Qodana Community for JVM
Class member can have 'private' visibility
Property 'jbTable' could be private
github-actions / Qodana Community for JVM
Lambda argument inside parentheses
Lambda argument should be moved out of parentheses
Check notice on line 40 in src/main/kotlin/com/backbase/bst/wizard/SsdkStep.kt
github-actions / Qodana Community for JVM
Lambda argument inside parentheses
Lambda argument should be moved out of parentheses
Check notice on line 30 in src/main/kotlin/com/backbase/bst/actions/SearchGoldenSamplesAction.kt
github-actions / Qodana Community for JVM
Verbose nullability and emptiness check
Replace subsequent checks with 'isNullOrEmpty()' call