Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for YAMLMapper (0.04 seconds)

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

        private Highlight highlight;
        private Breaking breaking;
        private Deprecation deprecation;
    
        private static final ObjectMapper yamlMapper = new ObjectMapper(new YAMLFactory());
    
        public static ChangelogEntry parse(File file) {
            try {
                return yamlMapper.readValue(file, ChangelogEntry.class);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    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)
Back to Top