Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceForLoopWithWhileLoopIntention
/
after.java.template
blob: 67a40725acfa99b7b1f778b0a9a132d4d1e90e92 [
file
]
public
class
X
{
void
f
(
String
[]
as
)
{
int
i
=
0
;
while
(
i
<
as
.
length
)
{
System
.
out
.
println
(
as
[
i
]);
i
++;
}
}
}