Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 458075

Summary: pluginRegistry has invalid typeof comparison
Product: [ECD] Orion Reporter: Michael Rennie <Michael_Rennie>
Component: ClientAssignee: Simon Kaegi <simon_kaegi>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 8.0   
Target Milestone: 8.0   
Hardware: PC   
OS: Mac OS X   
Whiteboard:

Description Michael Rennie CLA 2015-01-21 13:36:11 EST
~line 286

var response = typeof messageId === undefined ? null : {
  id: messageId,
  result: null,
  error: null
};

should be 

var response = typeof messageId === 'undefined' ? null : {
  id: messageId,
  result: null,
  error: null
};

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof#Description