Skip to content

Commit

Permalink
Restore public visibility of methods on RootObjectMapper (#77274) (#7…
Browse files Browse the repository at this point in the history
…7380)

Reset methods on RootObjectMapper to public for external use.
  • Loading branch information
jbaiera committed Sep 7, 2021
1 parent 02ea117 commit 66a35c4
Showing 1 changed file with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,19 +267,31 @@ RootObjectMapper copyAndReset() {
return copy;
}

boolean dateDetection() {
/**
* Public API
*/
public boolean dateDetection() {
return this.dateDetection.value();
}

boolean numericDetection() {
/**
* Public API
*/
public boolean numericDetection() {
return this.numericDetection.value();
}

DateFormatter[] dynamicDateTimeFormatters() {
/**
* Public API
*/
public DateFormatter[] dynamicDateTimeFormatters() {
return dynamicDateTimeFormatters.value();
}

DynamicTemplate[] dynamicTemplates() {
/**
* Public API
*/
public DynamicTemplate[] dynamicTemplates() {
return dynamicTemplates.value();
}

Expand Down

0 comments on commit 66a35c4

Please sign in to comment.