Make additionalcorddapps property on cordform node internal (#2329)

This commit is contained in:
Anthony Keenan 2018-01-08 11:54:41 +00:00 committed by GitHub
parent 83a0a2fa3c
commit 5924427659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ class Node(private val project: Project) : CordformNode() {
* @note Type is any due to gradle's use of "GStrings" - each value will have "toString" called on it
*/
var cordapps = mutableListOf<Any>()
var additionalCordapps = mutableListOf<File>()
internal var additionalCordapps = mutableListOf<File>()
internal lateinit var nodeDir: File
private set
internal lateinit var rootDir: File