diff options
Diffstat (limited to 'src/deferred.js')
-rw-r--r-- | src/deferred.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deferred.js b/src/deferred.js index a7938025c..8139515fe 100644 --- a/src/deferred.js +++ b/src/deferred.js @@ -37,7 +37,7 @@ function adoptValue( value, resolve, reject ) { // For Promises/A+, convert exceptions into rejections // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in // Deferred#then to conditionally suppress rejection. - } catch ( /*jshint -W002 */ value ) { + } catch ( value ) { // Support: Android 4.0 only // Strict mode functions invoked without .call/.apply get global-object context |