src/main/java/org/apache/xmlbeans/impl/values/JavaListXmlObject.java [75:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public T remove(int index) {
        if (remover == null) {
            throw new IllegalStateException("XmlBean generated using partial methods - no remove method available");
        }
        T old = get(index);
        remover.accept(index);
        return old;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/xmlbeans/impl/values/JavaListObject.java [73:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public T remove(int index) {
        if (remover == null) {
            throw new IllegalStateException("XmlBean generated using partial methods - no remove method available");
        }
        T old = get(index);
        remover.accept(index);
        return old;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



