Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
resources-en
/
src
/
intentionDescriptions
/
ConverFieldToAtomicIntention
/
after.java.template
blob: 55df1585835d5696c7255b5204435f7922526f8a [
file
] [
log
] [
blame
]
import
java
.
util
.
concurrent
.
atomic
.
AtomicBoolean
;
class
A
{
<spot>
AtomicBoolean
b
=
new
AtomicBoolean
(
false
);</
spot
>
void
foo
()
{
if
(<
spot
>
b
.
get
()</
spot
>)
{
//do smth
}
}
}