aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2017-04-19 15:00:13 +1000
committerJosh Matthews <josh@joshmatthews.net>2017-06-09 13:16:39 -0400
commit58e39bfffa5770a0467b6bce680d50b42068a11b (patch)
tree2d0786179bb55c53b2b600f8406259c6181c4c19
parent3773a4d49942a6fbe7bcfe92ed7a033bec21f3da (diff)
downloadservo-58e39bfffa5770a0467b6bce680d50b42068a11b.tar.gz
servo-58e39bfffa5770a0467b6bce680d50b42068a11b.zip
The ParseErrorReporter trait no longer needs to be Send.
-rw-r--r--components/style/error_reporting.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/error_reporting.rs b/components/style/error_reporting.rs
index 1191c2b3ebb..2e16463d788 100644
--- a/components/style/error_reporting.rs
+++ b/components/style/error_reporting.rs
@@ -75,7 +75,7 @@ impl<'a> ParseError<'a> {
}
/// A generic trait for an error reporter.
-pub trait ParseErrorReporter : Sync + Send {
+pub trait ParseErrorReporter : Sync {
/// Called when the style engine detects an error.
///
/// Returns the current input being parsed, the source position it was