Skip to content

Commit

Permalink
fix(tabstractconvertermanager): fix wrong classname to call static me…
Browse files Browse the repository at this point in the history
…thod
  • Loading branch information
Itee committed Aug 2, 2019
1 parent e8c7779 commit 050ac4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/core/converters/TAbstractConverterManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TAbstractConverterManager {
if ( isArray( error ) ) {

for ( let i = 0, l = error.length ; i < l ; ++i ) {
errorsList = errorsList.concat( TAbstractDataController._formatError( error[ i ] ) )
errorsList = errorsList.concat( TAbstractConverterManager._formatError( error[ i ] ) )
}

} else if ( isObject( error ) ) {
Expand Down

0 comments on commit 050ac4e

Please sign in to comment.