Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineParameter
/
StaticFinalField.java.after
blob: 2e5e66867d6dec5dee39b7cfbcd1aacefd100bf0 [
file
]
public
class
A
{
void
test
()
{
String
[]
myValue
=
CONST
;
}
void
callTest
()
{
test
();
}
void
callTest2
()
{
test
();
}
public
static
final
String
[]
CONST
=
new
String
[]
{
"A"
,
"B"
};
}