If an exception gets thrown in the try-block and the return statements on lines 1 and 2 are commented out, it is possible (actually sure) that the variable "fin" might not have been initialized. The compiler is complaining because you are using that variable later in the do-block and you cannot use an uninitialized variable. To remedy to this,
you should initialize fin to null when declaring it before the try-block.
If the return statements are not commented out, you can be sure that if no exception happen, fin will be initialize to some value and that if an exception occurs, the method will return and the do-block will never be executed, and thus, the variable "fin" won't be used, so there is no problem with the compiler.