Skip to content

Repro vip add support public exec #20

Repro vip add support public exec

Repro vip add support public exec #20

Triggered via pull request October 2, 2023 13:00
Status Success
Total duration 1m 0s
Artifacts 1
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

pmd.yml

on: pull_request
pmd-code-scan
51s
pmd-code-scan
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
Avoid unused constructor parameters such as 'publicationBusiness'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-api/src/main/java/fr/insalyon/creatis/vip/api/business/PipelineBusiness.java#L82
Reports parameters of methods and constructors that are not referenced them in the method body. Parameters whose name starts with `ignored` or `unused` are filtered out. Removing unused formal parameters from public methods could cause a ripple effect through the code base. Hence, by default, this rule only considers private methods. To include non-private methods, set the `checkAll` property to `true`. UnusedFormalParameter (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedformalparameter
Avoid unused private fields such as 'logger'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-api/src/main/java/fr/insalyon/creatis/vip/api/security/apikey/ApikeyAuthenticationToken.java#L51
Detects when a private field is declared and/or assigned a value, but not used. Since PMD 6.50.0 private fields are ignored, if the fields are annotated with any annotation or the enclosing class has any annotation. Annotations often enable a framework (such as dependency injection, mocking or e.g. Lombok) which use the fields by reflection or other means. This usage can't be detected by static code analysis. Previously these frameworks where explicitly allowed by listing their annotations in the property "ignoredAnnotations", but that turned out to be prone of false positive for any not explicitly considered framework. UnusedPrivateField (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedprivatefield
Avoid unused constructor parameters such as 'applicationName'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/launch/DocumentationSection.java#L51
Reports parameters of methods and constructors that are not referenced them in the method body. Parameters whose name starts with `ignored` or `unused` are filtered out. Removing unused formal parameters from public methods could cause a ripple effect through the code base. Hence, by default, this rule only considers private methods. To include non-private methods, set the `checkAll` property to `true`. UnusedFormalParameter (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedformalparameter
Avoid unused private methods such as 'addDisablesInputs(String, Set<String>)'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/launch/LaunchFormLayout.java#L418
Unused Private Method detects when a private method is declared but is unused. UnusedPrivateMethod (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedprivatemethod
Avoid unused private methods such as 'addRequiresInputs(String, Set<String>)'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/launch/LaunchFormLayout.java#L439
Unused Private Method detects when a private method is declared but is unused. UnusedPrivateMethod (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedprivatemethod
Avoid unused private methods such as 'addValueDisables(String, Map<String, Set<String>>)'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/launch/LaunchFormLayout.java#L467
Unused Private Method detects when a private method is declared but is unused. UnusedPrivateMethod (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedprivatemethod
Avoid unused private methods such as 'addValueRequires(String, Map<String, Set<String>>)'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/launch/LaunchFormLayout.java#L495
Unused Private Method detects when a private method is declared but is unused. UnusedPrivateMethod (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedprivatemethod
Avoid unused local variables such as 'status'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/monitor/SimulationsToolStrip.java#L128
Detects when a local variable is declared and/or assigned, but not used. Variables whose name starts with `ignored` or `unused` are filtered out. UnusedLocalVariable (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedlocalvariable
Avoid unused private fields such as 'binItem'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/monitor/StatsTab.java#L79
Detects when a private field is declared and/or assigned a value, but not used. Since PMD 6.50.0 private fields are ignored, if the fields are annotated with any annotation or the enclosing class has any annotation. Annotations often enable a framework (such as dependency injection, mocking or e.g. Lombok) which use the fields by reflection or other means. This usage can't be detected by static code analysis. Previously these frameworks where explicitly allowed by listing their annotations in the property "ignoredAnnotations", but that turned out to be prone of false positive for any not explicitly considered framework. UnusedPrivateField (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedprivatefield
Avoid unused local variables such as 'value'.: file:///home/runner/work/VIP-portal/VIP-portal/vip-application/src/main/java/fr/insalyon/creatis/vip/application/client/view/monitor/StatsTab.java#L130
Detects when a local variable is declared and/or assigned, but not used. Variables whose name starts with `ignored` or `unused` are filtered out. UnusedLocalVariable (Priority: 3, Ruleset: Best Practices) https://docs.pmd-code.org/pmd-doc-7.0.0-rc4/pmd_rules_java_bestpractices.html#unusedlocalvariable

Artifacts

Produced during runtime
Name Size
PMD Report Expired
61.5 KB