Skip to content

Merge pull request #59 from Backbase/BB-Servicetoolkit-version-1.0.2 #191

Merge pull request #59 from Backbase/BB-Servicetoolkit-version-1.0.2

Merge pull request #59 from Backbase/BB-Servicetoolkit-version-1.0.2 #191

GitHub Actions / Qodana Community for JVM completed Nov 20, 2024 in 0s

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:

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]

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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

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

Incorrect string capitalization

String 'Event Name' is not properly capitalized. It should have sentence capitalization

Check warning on line 31 in src/main/kotlin/com/backbase/bst/actions/extensions/GenerateHooksDialog.kt

See this annotation in the file changed.

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

Incorrect string capitalization

String 'Behaviour Extension Name' is not properly capitalized. It should have sentence capitalization

Check warning on line 35 in src/main/kotlin/com/backbase/bst/actions/extensions/GenerateHooksDialog.kt

See this annotation in the file changed.

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

Incorrect string capitalization

String 'Route Extension Type' is not properly capitalized. It should have sentence capitalization

Check warning on line 37 in src/main/kotlin/com/backbase/bst/actions/openapi/GenerateServerApiDialog.kt

See this annotation in the file changed.

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

Incorrect string capitalization

String 'Service Name' is not properly capitalized. It should have sentence capitalization

Check warning on line 34 in src/main/kotlin/com/backbase/bst/actions/extensions/GenerateHooksDialog.kt

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

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

Class member can have 'private' visibility

Property 'jbTable' could be private

Check notice on line 43 in src/main/kotlin/com/backbase/bst/wizard/extensions/ExtensionProjectStep.kt

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

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

Verbose nullability and emptiness check

Replace subsequent checks with 'isNullOrEmpty()' call