No callers of rupdate()

This commit is contained in:
Tony Garnock-Jones 2014-05-28 10:32:35 -04:00
parent 73192735e0
commit 44de4f118c
1 changed files with 0 additions and 13 deletions

View File

@ -150,19 +150,6 @@ function Routing(exports) {
return s.slice();
}
function rupdate(r, key, k) {
if (is_emptyMatcher(k)) {
if (is_emptyMatcher(r)) return r;
r = r.copy();
r.clear(key);
return r.emptyGuard();
} else {
r = (is_emptyMatcher(r) ? new $Dict() : r.copy());
r.set(key, k);
return r;
}
}
function rupdateInplace(r, key, k) {
if (is_emptyMatcher(k)) {
r.clear(key);