- switch to java7 try-with-resources
 - add check in unit-tests for checking control
This commit is contained in:
Connor Tumbleson
2014-10-22 22:03:59 -05:00
parent 3e6fc8c5ef
commit 869d287aaa
2 changed files with 14 additions and 39 deletions

View File

@ -256,7 +256,7 @@ public class BuildAndDecodeTest {
// hacky fix - load test by changing name of control
File test = new File(control.toString().replace("testapp-orig", "testapp-new"));
if (test.isFile()) {
if (test.isFile() && control.isFile()) {
if (control.hashCode() != test.hashCode()) {
return false;
}