mirror of
https://github.com/corda/corda.git
synced 2025-04-13 14:13:26 +00:00
Merged in rog-compiler-warning-fixes (pull request #499)
Rog compiler warning fixes
This commit is contained in:
commit
b9ef1f1ade
@ -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 -> {
|
||||
|
@ -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()))
|
||||
|
Loading…
x
Reference in New Issue
Block a user