1
0
Fork 0

DataProcessor code formatting fix (= alignment)

Was bugging the hell out of me.

* src/server/request/DataProcessor.js (constructor): Align `='s.
master
Mike Gerwitz 2017-07-06 13:07:18 -04:00
parent 7e4d872db2
commit 00f457d3d8
1 changed files with 3 additions and 3 deletions

View File

@ -62,9 +62,9 @@ module.exports = Class( 'DataProcessor',
*/
constructor( filter, dapif, meta_source )
{
this._filter = filter;
this._dapif = dapif;
this._metaSource = meta_source;
this._filter = filter;
this._dapif = dapif;
this._metaSource = meta_source;
},