Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
CastWhenDuplicateReplacement.java
blob: 68a91fd51b8f1ac8350bc24e3809700a3d73ea0d [
file
]
class
Test
{
void
foo
(
Object
x
)
{
if
(
x
instanceof
String
)
x
=
((
String
)
x
).
substring
(
1
);
if
(
x
instanceof
String
)
x
=
<
selection
>((
String
)
x
).
substring
(
1
)</
selection
>;
}
}