Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getNewNames (0.1 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

         * @return a Map containing the new name for each element that has to be renamed
         */
        public Map<T, String> deduplicate(Iterable<? extends T> elements) {
            return new StatefulDeduplicator(elements).getNewNames();
        }
    
        /*
         * This inner class hides the fact that the actual de-duplication algorithm is stateful.
         */
        private class StatefulDeduplicator {
    
            private final List<T> elements;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top