Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceWhileLoopWithDoWhileLoopIntention
/
before.java.template
blob: c335771f8926c0a8f0e87539d3e4bd521a5e723d [
file
] [
log
] [
blame
]
public
class
X
{
private
boolean
flag
;
void
f
()
{
<spot>
while
</
spot
>(
flag
)
{
System
.
out
.
println
(
"looping"
);
}
}
}