Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UseCollectionConstructor (0.7 sec)

  1. android/guava-tests/test/com/google/common/collect/ListsTest.java

      }
    
      public void testNewLinkedListEmpty() {
        @SuppressWarnings("UseCollectionConstructor") // test of factory method
        LinkedList<Integer> list = Lists.newLinkedList();
        assertEquals(emptyList(), list);
      }
    
      public void testNewLinkedListFromCollection() {
        @SuppressWarnings("UseCollectionConstructor") // test of factory method
        LinkedList<Integer> list = Lists.newLinkedList(SOME_COLLECTION);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testNewLinkedHashSetEmpty() {
        @SuppressWarnings("UseCollectionConstructor") // test of factory method
        LinkedHashSet<Integer> set = Sets.newLinkedHashSet();
        verifyLinkedHashSetContents(set, EMPTY_COLLECTION);
      }
    
      public void testNewLinkedHashSetFromCollection() {
        @SuppressWarnings("UseCollectionConstructor") // test of factory method
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.3K bytes
    - Viewed (0)
Back to top