Suppressed unused variable compiler warnings.

This commit is contained in:
RogerWillis 2016-11-18 17:35:53 +00:00
parent f90c5a702a
commit b1dbd2a07c
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package net.corda.contracts
import javafx.beans.property.SimpleObjectProperty
import net.corda.contracts.asset.sumCashBy
import net.corda.core.contracts.*
import net.corda.core.crypto.NullPublicKeyTree
@ -20,6 +21,7 @@ import java.util.*
val CP_LEGACY_PROGRAM_ID = CommercialPaperLegacy()
// TODO: Generalise the notion of an owned instrument into a superclass/supercontract. Consider composition vs inheritance.
@SuppressWarnings("unused")
class CommercialPaperLegacy : Contract {
// TODO: should reference the content of the legal agreement, not its URI
override val legalContractReference: SecureHash = SecureHash.sha256("https://en.wikipedia.org/wiki/Commercial_paper")
@ -62,6 +64,8 @@ class CommercialPaperLegacy : Contract {
val command = tx.commands.requireSingleCommand<CommercialPaperLegacy.Commands>()
val timestamp: Timestamp? = tx.timestamp
// Suppress compiler warning as 'key' is an unused variable when destructuring 'groups'.
@Suppress("UNUSED_VARIABLE")
for ((inputs, outputs, key) in groups) {
when (command.value) {
is Commands.Move -> {

View File

@ -480,6 +480,8 @@ class Obligation<P> : Contract {
// Create a lookup table of the party that each public key represents.
states.map { it.obligor }.forEach { partyLookup.put(it.owningKey, it) }
// Suppress compiler warning as 'groupStates' is an unused variable when destructuring 'groups'.
@Suppress("UNUSED_VARIABLE")
for ((netState, groupStates) in groups) {
// Extract the net balances
val netBalances = netAmountsDue(extractAmountsDue(issued.product, states.asIterable()))