Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for linkedListValues (0.3 sec)

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

          @SuppressWarnings({"rawtypes", "unchecked"})
          Supplier<List<V>> result = (Supplier) INSTANCE;
          return result;
        }
    
        @Override
        // We recommend against linkedListValues but need to keep it for compatibility.
        @SuppressWarnings("JdkObsolete")
        public List<?> get() {
          return new LinkedList<>();
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MultimapBuilder.java

          @SuppressWarnings({"rawtypes", "unchecked"})
          Supplier<List<V>> result = (Supplier) INSTANCE;
          return result;
        }
    
        @Override
        // We recommend against linkedListValues but need to keep it for compatibility.
        @SuppressWarnings("JdkObsolete")
        public List<?> get() {
          return new LinkedList<>();
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top