Merged in rog-compiler-warning-fixes (pull request #499)

Rog compiler warning fixes
This commit is contained in:
Roger Willis 2016-11-18 18:00:00 +00:00
commit b9ef1f1ade
2 changed files with 4 additions and 0 deletions

View File

@ -62,6 +62,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()))