Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SetWithFewActions (0.12 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

            }
        }
    
        private static class SetWithFewActions<T> extends ImmutableActionSet<T> {
            private final Action<? super T>[] actions;
    
            SetWithFewActions(ImmutableSet<Action<? super T>> set) {
                actions = Cast.uncheckedNonnullCast(set.toArray(new Action<?>[set.size()]));
            }
    
            SetWithFewActions(Action<? super T>[] actions) {
                this.actions = actions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top