See <https://builds.apache.org/job/POI/225/changes>
Changes:
[kiwiwings] As Jdk 1.5 doesn't provide NavigableMap/Set classes of JDK 1.6, we
temporarily use the open jdk classes instead, until POI has switched to JDK 1.6
------------------------------------------
[...truncated 5616 lines...]
[echo]
[echo] import java.util.AbstractCollection;
[echo] import java.util.Collection;
[echo] import java.util.Iterator;
[echo] import java.util.Set;
[echo]
[echo] /**
[echo] * This class provides a skeletal implementation of the <tt>Set</tt>
[echo] * interface to minimize the effort required to implement this
[echo] * interface. <p>
[echo] *
[echo] * The process of implementing a set by extending this class is
identical
[echo] * to that of implementing a Collection by extending
AbstractCollection,
[echo] * except that all of the methods and constructors in subclasses of
this
[echo] * class must obey the additional constraints imposed by the
<tt>Set</tt>
[echo] * interface (for instance, the add method must not permit addition
of
[echo] * multiple instances of an object to a set).<p>
[echo] *
[echo] * Note that this class does not override any of the
implementations from
[echo] * the <tt>AbstractCollection</tt> class. It merely adds
implementations
[echo] * for <tt>equals</tt> and <tt>hashCode</tt>.<p>
[echo] *
[echo] * This class is a member of the
[echo] * <a href="{@docRoot}/../technotes/guides/collections/index.html">
[echo]
[echo]
=======================================================================
[echo]
==f:/hudson/hudson-slave/workspace/POI/src/ooxml/java/org/apache/poi/util/java7_util/NavigableMap7.java
[echo]
=======================================================================
[echo] /*
[echo] * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
[echo] *
[echo] * This code is free software; you can redistribute it and/or
modify it
[echo] * under the terms of the GNU General Public License version 2
only, as
[echo] * published by the Free Software Foundation. Oracle designates
this
[echo] * particular file as subject to the "Classpath" exception as
provided
[echo] * by Oracle in the LICENSE file that accompanied this code.
[echo] *
[echo] * This code is distributed in the hope that it will be useful, but
WITHOUT
[echo] * ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or
[echo] * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License
[echo] * version 2 for more details (a copy is included in the LICENSE
file that
[echo] * accompanied this code).
[echo] *
[echo] * You should have received a copy of the GNU General Public
License version
[echo] * 2 along with this work; if not, write to the Free Software
Foundation,
[echo] * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
[echo] *
[echo] * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA
94065 USA
[echo] * or visit www.oracle.com if you need additional information or
have any
[echo] * questions.
[echo] */
[echo]
[echo] /*
[echo] * This file is available under and governed by the GNU General
Public
[echo] * License version 2 only, as published by the Free Software
Foundation.
[echo] * However, the following notice accompanied the original version
of this
[echo] * file:
[echo] *
[echo] * Written by Doug Lea and Josh Bloch with assistance from members
of JCP
[echo] * JSR-166 Expert Group and released to the public domain, as
explained at
[echo] * http://creativecommons.org/publicdomain/zero/1.0/
[echo] */
[echo]
[echo] package org.apache.poi.util.java7_util;
[echo]
[echo] import java.util.Collections;
[echo] import java.util.Comparator;
[echo] import java.util.Map;
[echo] import java.util.SortedMap;
[echo]
[echo] /**
[echo] * A {@link SortedMap} extended with navigation methods returning
the
[echo] * closest matches for given search targets. Methods
[echo] * {@code lowerEntry}, {@code floorEntry}, {@code ceilingEntry},
[echo] * and {@code higherEntry} return {@code Map.Entry} objects
[echo] * associated with keys respectively less than, less than or equal,
[echo] * greater than or equal, and greater than a given key, returning
[echo] * {@code null} if there is no such key. Similarly, methods
[echo]
[echo]
=======================================================================
[echo]
==f:/hudson/hudson-slave/workspace/POI/src/ooxml/java/org/apache/poi/util/java7_util/NavigableSet7.java
[echo]
=======================================================================
[echo] /*
[echo] * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
[echo] *
[echo] * This code is free software; you can redistribute it and/or
modify it
[echo] * under the terms of the GNU General Public License version 2
only, as
[echo] * published by the Free Software Foundation. Oracle designates
this
[echo] * particular file as subject to the "Classpath" exception as
provided
[echo] * by Oracle in the LICENSE file that accompanied this code.
[echo] *
[echo] * This code is distributed in the hope that it will be useful, but
WITHOUT
[echo] * ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or
[echo] * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License
[echo] * version 2 for more details (a copy is included in the LICENSE
file that
[echo] * accompanied this code).
[echo] *
[echo] * You should have received a copy of the GNU General Public
License version
[echo] * 2 along with this work; if not, write to the Free Software
Foundation,
[echo] * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
[echo] *
[echo] * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA
94065 USA
[echo] * or visit www.oracle.com if you need additional information or
have any
[echo] * questions.
[echo] */
[echo]
[echo] /*
[echo] * This file is available under and governed by the GNU General
Public
[echo] * License version 2 only, as published by the Free Software
Foundation.
[echo] * However, the following notice accompanied the original version
of this
[echo] * file:
[echo] *
[echo] * Written by Doug Lea and Josh Bloch with assistance from members
of JCP
[echo] * JSR-166 Expert Group and released to the public domain, as
explained at
[echo] * http://creativecommons.org/publicdomain/zero/1.0/
[echo] */
[echo]
[echo] package org.apache.poi.util.java7_util;
[echo]
[echo] import java.util.Collections;
[echo] import java.util.Comparator;
[echo] import java.util.Iterator;
[echo] import java.util.SortedSet;
[echo]
[echo] /**
[echo] * A {@link SortedSet} extended with navigation methods reporting
[echo] * closest matches for given search targets. Methods {@code lower},
[echo] * {@code floor}, {@code ceiling}, and {@code higher} return
elements
[echo] * respectively less than, less than or equal, greater than or
equal,
[echo] * and greater than a given element, returning {@code null} if there
[echo] * is no such element. A {@code NavigableSet7} may be accessed and
[echo] * traversed in either ascending or descending order. The {@code
[echo]
[echo]
=======================================================================
[echo]
==f:/hudson/hudson-slave/workspace/POI/src/ooxml/java/org/apache/poi/util/java7_util/TreeMap7.java
[echo]
=======================================================================
[echo] /*
[echo] * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All
rights reserved.
[echo] * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
[echo] *
[echo] * This code is free software; you can redistribute it and/or
modify it
[echo] * under the terms of the GNU General Public License version 2
only, as
[echo] * published by the Free Software Foundation. Oracle designates
this
[echo] * particular file as subject to the "Classpath" exception as
provided
[echo] * by Oracle in the LICENSE file that accompanied this code.
[echo] *
[echo] * This code is distributed in the hope that it will be useful, but
WITHOUT
[echo] * ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or
[echo] * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License
[echo] * version 2 for more details (a copy is included in the LICENSE
file that
[echo] * accompanied this code).
[echo] *
[echo] * You should have received a copy of the GNU General Public
License version
[echo] * 2 along with this work; if not, write to the Free Software
Foundation,
[echo] * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
[echo] *
[echo] * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA
94065 USA
[echo] * or visit www.oracle.com if you need additional information or
have any
[echo] * questions.
[echo] */
[echo]
[echo] package org.apache.poi.util.java7_util;
[echo]
[echo] import java.io.IOException;
[echo] import java.util.AbstractCollection;
[echo] import java.util.AbstractSet;
[echo] import java.util.Collection;
[echo] import java.util.Collections;
[echo] import java.util.Comparator;
[echo] import java.util.ConcurrentModificationException;
[echo] import java.util.HashMap;
[echo] import java.util.Hashtable;
[echo] import java.util.Iterator;
[echo] import java.util.Map;
[echo] import java.util.NoSuchElementException;
[echo] import java.util.Set;
[echo] import java.util.SortedMap;
[echo] import java.util.SortedSet;
[echo]
[echo] /**
[echo] * A Red-Black tree based {@link NavigableMap7} implementation.
[echo] * The map is sorted according to the {@linkplain Comparable natural
[echo] * ordering} of its keys, or by a {@link Comparator} provided at map
[echo] * creation time, depending on which constructor is used.
[echo] *
[echo] * <p>This implementation provides guaranteed log(n) time cost for
the
[echo]
[echo]
=======================================================================
[echo]
==f:/hudson/hudson-slave/workspace/POI/src/ooxml/java/org/apache/poi/util/java7_util/TreeSet7.java
[echo]
=======================================================================
[echo] /*
[echo] * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All
rights reserved.
[echo] * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
[echo] *
[echo] * This code is free software; you can redistribute it and/or
modify it
[echo] * under the terms of the GNU General Public License version 2
only, as
[echo] * published by the Free Software Foundation. Oracle designates
this
[echo] * particular file as subject to the "Classpath" exception as
provided
[echo] * by Oracle in the LICENSE file that accompanied this code.
[echo] *
[echo] * This code is distributed in the hope that it will be useful, but
WITHOUT
[echo] * ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or
[echo] * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License
[echo] * version 2 for more details (a copy is included in the LICENSE
file that
[echo] * accompanied this code).
[echo] *
[echo] * You should have received a copy of the GNU General Public
License version
[echo] * 2 along with this work; if not, write to the Free Software
Foundation,
[echo] * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
[echo] *
[echo] * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA
94065 USA
[echo] * or visit www.oracle.com if you need additional information or
have any
[echo] * questions.
[echo] */
[echo]
[echo] package org.apache.poi.util.java7_util;
[echo]
[echo] import java.util.Collection;
[echo] import java.util.Collections;
[echo] import java.util.Comparator;
[echo] import java.util.ConcurrentModificationException;
[echo] import java.util.HashSet;
[echo] import java.util.Iterator;
[echo] import java.util.Map;
[echo] import java.util.NoSuchElementException;
[echo] import java.util.Set;
[echo] import java.util.SortedSet;
[echo] import java.util.TreeMap;
[echo]
[echo] /**
[echo] * A {@link NavigableSet7} implementation based on a {@link
TreeMap}.
[echo] * The elements are ordered using their {@linkplain Comparable
natural
[echo] * ordering}, or by a {@link Comparator} provided at set creation
[echo] * time, depending on which constructor is used.
[echo] *
[echo] * <p>This implementation provides guaranteed log(n) time cost for
the basic
[echo] * operations ({@code add}, {@code remove} and {@code contains}).
[echo] *
[echo] * <p>Note that the ordering maintained by a set (whether or not an
explicit
[echo] * comparator is provided) must be <i>consistent with equals</i> if
it is to
BUILD FAILED
<https://builds.apache.org/job/POI/ws/build.xml>:1382: condition satisfied
Total time: 20 minutes 42 seconds
Build step 'Invoke Ant' marked build as failure
[WARNINGS] Skipping publisher since build result is FAILURE
Archiving artifacts
Recording test results
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]