fixed null check

This commit is contained in:
AndyScherzinger 2016-10-05 22:30:12 +02:00
parent 29002e5a24
commit a634be95ca
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -110,7 +110,7 @@ public class FileOperationsHelper {
}
}
if (br != null) {
if (fr != null) {
try {
fr.close();
} catch (IOException e) {