nicolas-gauthier-sonarsource 828e2d54cc
Modify S1481: Migrate to LaYC (#3245)
## Review

A dedicated reviewer checked the rule description successfully for:

- [x] logical errors and incorrect information
- [x] information gaps and missing content
- [x] text style and tone
- [x] PR summary and labels follow [the
guidelines](https://github.com/SonarSource/rspec/#to-modify-an-existing-rule)
2023-10-13 11:59:36 +02:00

44 lines
761 B
Plaintext

include::../rationale.adoc[]
include::../how-to-fix-it.adoc[]
=== Code examples
==== Noncompliant code example
[source,kotlin,diff-id=1,diff-type=noncompliant]
----
fun numberOfMinutes(hours: Int): Int {
val seconds: Int = 0 // Noncompliant - seconds is unused
val result: Int = hours * 60
return result
}
----
==== Compliant solution
[source,kotlin,diff-id=1,diff-type=compliant]
----
fun numberOfMinutes(hours: Int): Int {
val result: Int = hours * 60
return result
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]