diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2013-03-01 19:33:12 -0500 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2013-03-01 19:33:12 -0500 |
commit | 8f7218198dad5dd1a93dc44087159b2c34b86292 (patch) | |
tree | c3ae25fd7f7c3f9588e851ca22b53f433ec0a4d3 /src/data.js | |
parent | 3212a293695221df402317633adf63698d95efd1 (diff) | |
download | jquery-8f7218198dad5dd1a93dc44087159b2c34b86292.tar.gz jquery-8f7218198dad5dd1a93dc44087159b2c34b86292.zip |
Remove dup camelKey path
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
Diffstat (limited to 'src/data.js')
-rw-r--r-- | src/data.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/data.js b/src/data.js index fb97d2fda..66fe1134d 100644 --- a/src/data.js +++ b/src/data.js @@ -279,14 +279,6 @@ jQuery.fn.extend({ return data; } - // As a last resort, attempt to find - // the data by checking AGAIN, but with - // a camelCased key. - data = data_user.get( elem, camelKey ); - if ( data !== undefined ) { - return data; - } - // We tried really hard, but the data doesn't exist. return undefined; } |