53 lines
804 B
Plaintext
53 lines
804 B
Plaintext
== Why is this an issue?
|
|
|
|
include::../description.adoc[]
|
|
|
|
=== Noncompliant code example
|
|
|
|
[source,java]
|
|
----
|
|
public class MyClass {
|
|
public void doSomething() {
|
|
Lock lock = new Lock();
|
|
lock.lock(); // Noncompliant
|
|
if (isInitialized()) {
|
|
// ...
|
|
lock.unlock();
|
|
}
|
|
}
|
|
}
|
|
----
|
|
|
|
=== Compliant solution
|
|
|
|
[source,java]
|
|
----
|
|
public class MyClass {
|
|
public void doSomething() {
|
|
Lock lock = new Lock();
|
|
if (isInitialized()) {
|
|
lock.lock();
|
|
// ...
|
|
lock.unlock();
|
|
}
|
|
}
|
|
}
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
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[]
|