You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/26 11:46:13 UTC

[18/26] couch commit: updated refs/heads/windsor-merge to 14dc5e9

Remove upgrade code that was re-introduced during the merge


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/7da0801d
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/7da0801d
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/7da0801d

Branch: refs/heads/windsor-merge
Commit: 7da0801d9e6f5eb8d859d8bb0b8b7321cbef72ac
Parents: 296b98a
Author: Paul J. Davis <pa...@gmail.com>
Authored: Sat Aug 16 21:27:21 2014 -0500
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Aug 26 10:44:12 2014 +0100

----------------------------------------------------------------------
 src/couch_att.erl | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/7da0801d/src/couch_att.erl
----------------------------------------------------------------------
diff --git a/src/couch_att.erl b/src/couch_att.erl
index f0d2dd1..232bb60 100644
--- a/src/couch_att.erl
+++ b/src/couch_att.erl
@@ -579,10 +579,6 @@ foldl(Att, Fun, Acc) ->
 
 foldl(Bin, _Att, Fun, Acc) when is_binary(Bin) ->
     Fun(Bin, Acc);
-foldl({Fd, Sp}, Att, Fun, Acc) when is_tuple(Sp) orelse Sp == null ->
-    % 09 UPGRADE CODE
-    Len = fetch(att_len, Att),
-    couch_stream:old_foldl(Fd, Sp, Len, Fun, Acc);
 foldl({Fd, Sp}, Att, Fun, Acc) ->
     Md5 = fetch(md5, Att),
     couch_stream:foldl(Fd, Sp, Md5, Fun, Acc);