aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools/protocol.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-08-12 14:46:25 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-08-12 18:37:27 +0200
commit7ad51dcd7aff7658914bcbdde0800fc2f87d9fa5 (patch)
tree7c3323204e3fb5d85edcb95b97748962e3978ae1 /components/devtools/protocol.rs
parenta22913569c2fa917015b23c27cb2f55de2a69ff2 (diff)
downloadservo-7ad51dcd7aff7658914bcbdde0800fc2f87d9fa5.tar.gz
servo-7ad51dcd7aff7658914bcbdde0800fc2f87d9fa5.zip
Update serde to 0.8 (fixes #12659)
Diffstat (limited to 'components/devtools/protocol.rs')
-rw-r--r--components/devtools/protocol.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/components/devtools/protocol.rs b/components/devtools/protocol.rs
index b385f396c1b..eb46ed38489 100644
--- a/components/devtools/protocol.rs
+++ b/components/devtools/protocol.rs
@@ -86,9 +86,6 @@ impl JsonPacketStream for TcpStream {
serde_json::Error::Syntax(_, l, c) => {
return Err(format!("syntax at {}:{}", l, c))
},
- serde_json::Error::FromUtf8(e) => {
- return Err(e.description().to_owned())
- },
},
};
},