Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceDoWhileLoopWithWhileLoopIntention
/
after.java.template
blob: 0ec2c4c11afc4256ad27befe846f9f2885fc6f0a [
file
]
public
class
X
{
private
boolean
flag
;
void
f
(
String
[]
as
)
{
System
.
out
.
println
(
"looping"
);
while
(
flag
)
{
System
.
out
.
println
(
"looping"
);
}
}
}