Merge pull request #1315 from corda/clint-gradle4

Upgraded to gradle 4.1.
This commit is contained in:
Clinton
2017-08-24 22:55:50 +01:00
committed by GitHub
21 changed files with 50 additions and 36 deletions

View File

@ -67,7 +67,9 @@ public class StandaloneCordaRPCJavaClientTest {
try {
connection.close();
} finally {
notary.close();
if(notary != null) {
notary.close();
}
}
}