File tree 2 files changed +4
-2
lines changed
src/main/java/com/fasterxml/jackson/databind
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
package com .fasterxml .jackson .databind .deser ;
2
2
3
+ import java .io .Serializable ;
3
4
import java .util .List ;
4
5
5
6
import com .fasterxml .jackson .databind .*;
45
46
* but have no effect; this is mostly so that new methods can be added in later
46
47
* versions.
47
48
*/
48
- public abstract class BeanDeserializerModifier
49
+ public abstract class BeanDeserializerModifier implements Serializable
49
50
{
50
51
/**
51
52
* Method called by {@link BeanDeserializerFactory} when it has collected
Original file line number Diff line number Diff line change 1
1
package com .fasterxml .jackson .databind .ser ;
2
2
3
+ import java .io .Serializable ;
3
4
import java .util .List ;
4
5
5
6
import com .fasterxml .jackson .databind .*;
33
34
* Default method implementations are "no-op"s, meaning that methods are implemented
34
35
* but have no effect.
35
36
*/
36
- public abstract class BeanSerializerModifier
37
+ public abstract class BeanSerializerModifier implements Serializable
37
38
{
38
39
/**
39
40
* Method called by {@link BeanSerializerFactory} with tentative set
You can’t perform that action at this time.
0 commit comments