Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
moveInstanceMethod
/
SameNames.java
blob: 8e4f612f69c610f26932e4429132d54610e784be [
file
] [
log
] [
blame
]
public
class
A
{
void
f
<
caret
>
oo
(
B b
)
{
b
.
foo
(
""
);
}
}
class
B
{
void
foo
(
String
s
)
{
System
.
out
.
println
(
s
);
}
}