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