mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Reduce max line length from 150 to 120 characters
Part of https://github.com/servo/servo/issues/6041
This commit is contained in:
parent
7561f7b83f
commit
8e3f4bba85
141 changed files with 1161 additions and 497 deletions
|
@ -151,7 +151,9 @@ impl Actor for ConsoleActor {
|
|||
timeStamp: 0,
|
||||
errorMessage: "page error test".to_string(),
|
||||
};
|
||||
messages.push(json::from_str(json::encode(&message).as_slice()).unwrap().as_object().unwrap().clone());*/
|
||||
messages.push(
|
||||
json::from_str(
|
||||
json::encode(&message).as_slice()).unwrap().as_object().unwrap().clone());*/
|
||||
}
|
||||
|
||||
"LogMessage" => {
|
||||
|
@ -161,7 +163,9 @@ impl Actor for ConsoleActor {
|
|||
timeStamp: 0,
|
||||
message: "log message test".to_string(),
|
||||
};
|
||||
messages.push(json::from_str(json::encode(&message).as_slice()).unwrap().as_object().unwrap().clone());*/
|
||||
messages.push(
|
||||
json::from_str(
|
||||
json::encode(&message).as_slice()).unwrap().as_object().unwrap().clone());*/
|
||||
}
|
||||
|
||||
s => println!("unrecognized message type requested: \"{}\"", s),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue