
## 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)
51 lines
864 B
Plaintext
51 lines
864 B
Plaintext
include::../rationale.adoc[]
|
|
|
|
include::../how-to-fix-it.adoc[]
|
|
|
|
=== Code examples
|
|
|
|
==== Noncompliant code example
|
|
|
|
[source,sql,diff-id=1,diff-type=noncompliant]
|
|
----
|
|
DECLARE
|
|
seconds INTEGER := 0; -- Noncompliant - seconds is unused
|
|
hours INTEGER := 2;
|
|
BEGIN
|
|
minutes := hours * 60;
|
|
DBMS_OUTPUT.PUT_LINE('Number of minutes: ' || minutes);
|
|
END;
|
|
----
|
|
|
|
|
|
==== Compliant solution
|
|
|
|
[source,sql,diff-id=1,diff-type=compliant]
|
|
----
|
|
DECLARE
|
|
hours INTEGER := 2;
|
|
BEGIN
|
|
minutes := hours * 60;
|
|
DBMS_OUTPUT.PUT_LINE('Number of minutes: ' || minutes);
|
|
END;
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
=== Message
|
|
|
|
Remove the unused local constant/exception/variable "xxx".
|
|
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|