Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            String key = it.keySet()[0]
            Object value = it[key]
            toExclude(key, value)
        }
    
        private void collectOperands(Object value, List<String> collector) {
            if (value instanceof List) {
                value.each {
                    collectOperands(it, collector)
                }
            } else {
                collector << toExclude(value)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top