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 <[email protected]> Authored: Sat Aug 16 21:27:21 2014 -0500 Committer: Robert Newson <[email protected]> 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);
