Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
DetailExceptionsIntention
/
before.java.template
blob: 27a73df20892cf02b3bcbc49496637cd514b3d37 [
file
] [
log
] [
blame
]
import
java
.
io
.*;
public
class
X
{
void
f
()
{
<spot>
try
</
spot
>
{
new
FileInputStream
(
"file.txt"
);
}
catch
(
Throwable
e
)
{
}
}
}