aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2019-04-11 20:42:12 -0400
committerGitHub <noreply@github.com>2019-04-11 20:42:12 -0400
commit1e4b42a90bae27040287ddae35e1979eed771dac (patch)
tree7467e483711cc7dd3c1aa723b6884732083209b6
parentc24420ddbe58884f1eb104c5900ae5cf51b5b787 (diff)
parent906a33ad0fcf27bdd2697da34edc8600f1e5dc6d (diff)
downloadservo-1e4b42a90bae27040287ddae35e1979eed771dac.tar.gz
servo-1e4b42a90bae27040287ddae35e1979eed771dac.zip
Auto merge of #23191 - paulrouget:no_proxy_clone, r=ferjm
Remove useless embedder proxy clone <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23191) <!-- Reviewable:end -->
-rw-r--r--components/constellation/constellation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs
index f65dd2af6f0..977155e6373 100644
--- a/components/constellation/constellation.rs
+++ b/components/constellation/constellation.rs
@@ -2899,7 +2899,7 @@ where
},
None => {
let event = (None, EmbedderMsg::Keyboard(event));
- self.embedder_proxy.clone().send(event);
+ self.embedder_proxy.send(event);
},
}
}