Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
slobo-showbie committed Jun 8, 2017
1 parent f3ce171 commit dfd7fff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ public void setReference(JavaType ref)
}
_referencedType = ref;
}

@Override
public JavaType getSuperClass() {
if (_referencedType != null) {
return _referencedType.getSuperClass();
}
return super.getSuperClass();
}

public JavaType getSelfReferencedType() { return _referencedType; }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.failing;
package com.fasterxml.jackson.databind.type;

import java.io.IOException;

Expand Down

0 comments on commit dfd7fff

Please sign in to comment.