Open
Bug 1386898
Opened 8 years ago
Updated 3 years ago
Perform minor cleanup of WebrtcGlobal.h
Categories
(Core :: WebRTC, enhancement, P3)
Core
WebRTC
Tracking
()
NEW
People
(Reporter: ng, Assigned: ng)
Details
The conditionals in the {Read,Write}Param can be simplified and made easier to read.
| Assignee | ||
Comment 1•8 years ago
|
||
if(!foo || !bar ...){
return false;
}
return true;
Can simply be:
return foo &&
bar &&
...;
Comment 2•8 years ago
|
||
Mass change P2->P3 to align with new Mozilla triage process.
Priority: P2 → P3
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•