passy / build-time-tracker-plugin

Gradle plugin to continuously track and report your build times
https://plugins.gradle.org/plugin/net.rdrei.android.buildtimetracker
Apache License 2.0
1.21k stars 67 forks source link

Added additional file closes to ensure no file is ever kept open #89

Closed BWMuller closed 6 years ago

BWMuller commented 6 years ago

This is to help with cleaning up the build files while working which is currently giving issues while android studio is open due to not all the file opens being closed after.

They have been wrapped in a try finally in order to ensure that it will always get done

passy commented 6 years ago

Thanks, that seems like a good thing to do!