Sign in
android
/
platform
/
tools
/
idea
/
c6218e46d5d2017e987ecdbd99b318a95c42abc0
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceArmWithTryFinallyIntention
/
before.java.template
blob: f0b4db52b1acafd1d71ad60463168cbf01d8434b [
file
] [
log
] [
blame
]
import
java
.
io
.*;
public
class
X
{
void
f
()
{
<spot>
try
</
spot
>
(
FileInputStream
in
=
new
FileInputStream
(
"in"
);
FileOutputStream
out
=
new
FileOutputStream
(
"out"
))
{
doSomethingWithStreams
(
in
,
out
);
}
catch
(
IOException
e
)
{}
}
}