core/src/main/java/jenkins/model/lazy/BuildReferenceMapAdapter.java [213:242]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                b |= add(r);
            }
            return b;
        }

        public boolean removeAll(Collection<?> c) {
            boolean b=false;
            for (Object o : c) {
                b|=remove(o);
            }
            return b;
        }

        public boolean retainAll(Collection<?> c) {
            // TODO: to properly pass this onto core, we need to wrap o into BuildReference but also needs to figure out ID.
            throw new UnsupportedOperationException();
        }

        public void clear() {
            core.clear();
        }

        @Override
        public boolean equals(Object o) {
            return core.equals(o);
        }

        @Override
        public int hashCode() {
            return core.hashCode();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/jenkins/model/lazy/BuildReferenceMapAdapter.java [316:345]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                b |= add(r);
            }
            return b;
        }

        public boolean removeAll(Collection<?> c) {
            boolean b=false;
            for (Object o : c) {
                b|=remove(o);
            }
            return b;
        }

        public boolean retainAll(Collection<?> c) {
            // TODO: to properly pass this onto core, we need to wrap o into BuildReference but also needs to figure out ID.
            throw new UnsupportedOperationException();
        }

        public void clear() {
            core.clear();
        }

        @Override
        public boolean equals(Object o) {
            return core.equals(o);
        }

        @Override
        public int hashCode() {
            return core.hashCode();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



