We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b9deb commit 36a75b7Copy full SHA for 36a75b7
src/main/java/com/fasterxml/jackson/databind/cfg/MapperConfig.java
@@ -92,14 +92,6 @@ public final boolean isEnabled(MapperFeature f) {
92
return (_mapperFeatures & f.getLongMask()) != 0;
93
}
94
95
- /**
96
- * "Bulk" access method for checking that all features specified by
97
- * mask are enabled.
98
- */
99
- public final boolean hasMapperFeatures(int featureMask) {
100
- return (_mapperFeatures & featureMask) == featureMask;
101
- }
102
-
103
/**
104
* Method for determining whether annotation processing is enabled or not
105
* (default settings are typically that it is enabled; must explicitly disable).
0 commit comments