From 9f80cfa249a88cb4fb5cf650dc100cbb2784dc3d Mon Sep 17 00:00:00 2001 From: Chris Rankin Date: Fri, 16 Mar 2018 10:31:48 +0000 Subject: [PATCH] Remove superfluous @JvmStatic annotation. (#2832) This annotation was applied because of a misunderstanding of what it actually did. --- .../main/kotlin/net/corda/core/transactions/LedgerTransaction.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/kotlin/net/corda/core/transactions/LedgerTransaction.kt b/core/src/main/kotlin/net/corda/core/transactions/LedgerTransaction.kt index 78b6cd7ff0..441b6591cf 100644 --- a/core/src/main/kotlin/net/corda/core/transactions/LedgerTransaction.kt +++ b/core/src/main/kotlin/net/corda/core/transactions/LedgerTransaction.kt @@ -51,7 +51,6 @@ data class LedgerTransaction @JvmOverloads constructor( } private companion object { - @JvmStatic private fun createContractFor(className: ContractClassName, classLoader: ClassLoader?): Try { return Try.on { (classLoader ?: this::class.java.classLoader)