Remove an unnecessary local variable.
This commit is contained in:
parent
4ec87d5cd2
commit
76916d7a4b
|
@ -451,9 +451,8 @@ impl<O: ForestObligation> ObligationForest<O> {
|
|||
index += 1;
|
||||
continue;
|
||||
}
|
||||
let result = processor.process_obligation(&mut node.obligation);
|
||||
|
||||
match result {
|
||||
match processor.process_obligation(&mut node.obligation) {
|
||||
ProcessResult::Unchanged => {
|
||||
// No change in state.
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue