Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineLocal
/
InlineFromTryCatchAvailable.java.after
blob: 1853d8acca74d6abfce378ddce6c1b92ee576157 [
file
]
import
java
.
io
.*;
class
Test
{
private
static
InputStream
getInputUnchecked
(
InputStream
inputSupplier
)
throws
IOException
{
try
{
}
catch
(
IOException
e
)
{
throw
new
IOException
();
}
return
null
;
}
}