Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for overkill (2.13 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * Instead, use the {@code HashSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * <p>Overall, this method is not very useful and will likely be deprecated in the future.
       */
      public static <E extends @Nullable Object> HashSet<E> newHashSet(Iterable<? extends E> elements) {
        return (elements instanceof Collection)
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top