Hygiene: Consistent error naming

Rather than using err and error as variable, use error for consistency
Follow up to I07f01b4c025b2e5e4cbf88ec05e7c536442c62cc

Bug: T202026
Change-Id: I54165ff1f1b17284d8232c491244e1a98950d5e2
This commit is contained in:
jdlrobson 2018-09-06 13:45:43 -07:00 committed by Jdlrobson
parent fd517597aa
commit e7f0cfd665
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@
}
// track RL exceptions
trackSubscribe( 'resourceloader.exception', function ( topic, data ) {
var err = data.exception;
handleError( err.message, err.lineNumber, err.columnNumber );
var error = data.exception;
handleError( error.message, error.lineNumber, error.columnNumber );
} );
// setup the global error handler
trackSubscribe( 'global.error', function ( topic, error ) {