Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineParameter
/
NullValue.java.after
blob: 057abc4ca6269fa299d975cc0fb694942d078c62 [
file
] [
log
] [
blame
]
public
class
A
{
void
test
(
int
count
)
{
String
t
=
null
;
}
void
callTest
()
{
test
(
1
);
}
void
callTest2
()
{
test
(
2
);
}
}