Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineMethod
/
Try.java.after
blob: 38cd08db9738e118dd2c1fdfe823df4dc3647398 [
file
]
public
class
Try
{
public
int
test
()
{
int
result
;
try
{
result
=
Integer
.
parseInt
(
"1"
);
}
catch
(
NumberFormatException
ex
)
{
throw
ex
;
}
int
i
=
result
;
return
i
;
}
}