isDeprecatedInRelease() — spring-boot Function Reference
Architecture documentation for the isDeprecatedInRelease() function in ChangelogWriter.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 4dbabc90_2d0b_a8c8_b362_ffd8a07bf340["isDeprecatedInRelease()"] 097860b8_471c_9185_deb4_2c446d487af0["getDeprecation()"] 4dbabc90_2d0b_a8c8_b362_ffd8a07bf340 -->|calls| 097860b8_471c_9185_deb4_2c446d487af0 05b4f98f_e510_7aad_990c_ff66eb1a7a6b["getLevel()"] 4dbabc90_2d0b_a8c8_b362_ffd8a07bf340 -->|calls| 05b4f98f_e510_7aad_990c_ff66eb1a7a6b style 4dbabc90_2d0b_a8c8_b362_ffd8a07bf340 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/main/java/org/springframework/boot/configurationmetadata/changelog/ChangelogWriter.java lines 203–206
private boolean isDeprecatedInRelease(Difference difference) {
Deprecation deprecation = difference.newProperty().getDeprecation();
return (deprecation != null) && (deprecation.getLevel() != Deprecation.Level.ERROR);
}
Domain
Subdomains
Calls
- getDeprecation()
- getLevel()
Source
Frequently Asked Questions
What does isDeprecatedInRelease() do?
isDeprecatedInRelease() is a function in the spring-boot codebase.
What does isDeprecatedInRelease() call?
isDeprecatedInRelease() calls 2 function(s): getDeprecation, getLevel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free