Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
LesyaBug.java
blob: a292e860e1f81fcf7785c2e02d02175620934dce [
file
]
import
java
.
io
.
OutputStream
;
class
A
{
{
try
{
OutputStream
out
=
null
;
<
selection
>
try
{
}
finally
{
out
.
close
();
}</
selection
>
}
catch
(
Throwable
t
)
{
}
}
}