Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
NotInitializedInsideFinally.java
blob: 17d0a1653a15e1780653420ea075c39df6897162 [
file
]
class
Tester
{
String
x
()
{
String
o
=
""
;
<
selection
>
String
s
;
try
{
s
=
o
;
}
finally
{
}
return
s
;</
selection
>
}
}