Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getDeprecation (0.21 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/BreakingChangesGenerator.java

                    )
                );
    
            final Map<String, List<ChangelogEntry.Deprecation>> deprecationsByArea = entries.stream()
                .map(ChangelogEntry::getDeprecation)
                .filter(Objects::nonNull)
                .sorted(comparing(ChangelogEntry.Deprecation::getTitle))
                .collect(groupingBy(ChangelogEntry.Deprecation::getArea, TreeMap::new, Collectors.toList()));
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

            return breaking;
        }
    
        public void setBreaking(Breaking breaking) {
            this.breaking = breaking;
        }
    
        public Deprecation getDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(Deprecation deprecation) {
            this.deprecation = deprecation;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

                        "[" + path + "] has type [" + type + "] and must supply a [breaking] section with further information"
                    );
                }
    
                if (type.equals("deprecation") && entry.getDeprecation() == null) {
                    throw new GradleException(
                        "[" + path + "] has type [deprecation] and must supply a [deprecation] section with further information"
                    );
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3.3K bytes
    - Click Count (0)
Back to Top