Skip to content

Commit 20cce3a

Browse files
committed
Remove couple of deprecated internal (not part of public API) methods
1 parent 2449fd5 commit 20cce3a

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,6 @@ private BeanPropertyMap(BeanPropertyMap src,
178178
_hashArea[ix+1] = newProp;
179179
}
180180

181-
@Deprecated // since 2.8
182-
public BeanPropertyMap(boolean caseInsensitive, Collection<SettableBeanProperty> props)
183-
{
184-
this(caseInsensitive, props, Collections.<String,List<PropertyName>>emptyMap(),
185-
Locale.getDefault());
186-
}
187-
188181
/**
189182
* @since 2.8
190183
*/
@@ -295,12 +288,6 @@ public static BeanPropertyMap construct(Collection<SettableBeanProperty> props,
295288
return new BeanPropertyMap(caseInsensitive, props, aliasMapping);
296289
}
297290

298-
@Deprecated // since 2.9
299-
public static BeanPropertyMap construct(Collection<SettableBeanProperty> props, boolean caseInsensitive) {
300-
return construct(props, caseInsensitive,
301-
Collections.<String,List<PropertyName>>emptyMap());
302-
}
303-
304291
/**
305292
* Fluent copy method that creates a new instance that is a copy
306293
* of this instance except for one additional property that is

src/main/java/com/fasterxml/jackson/databind/ser/impl/PropertySerializerMap.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,6 @@ public final SerializerAndMapResult addSerializer(JavaType type, JsonSerializer<
164164

165165
public abstract PropertySerializerMap newWith(Class<?> type, JsonSerializer<Object> serializer);
166166

167-
/**
168-
* @deprecated Since 2.5 Use {@link #emptyForProperties} instead
169-
*/
170-
@Deprecated
171-
public static PropertySerializerMap emptyMap() {
172-
return emptyForProperties();
173-
}
174-
175167
/**
176168
* @since 2.5
177169
*/

0 commit comments

Comments
 (0)