Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
WriteArrayAccess.java
blob: 39a38f76f887d3f9570190f146104d6b67d6d0b4 [
file
]
class
Test
{
void
foo
(
String
[]
ss
)
{
for
(
int
i
=
0
;
i
<
ss
.
length
;
i
++)
{
<
selection
>
ss
[
i
]
=
""
;</
selection
>
}
}
}