Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Fix MappingInstantiationException for no default constructor #153

Merged
merged 2 commits into from
Aug 19, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ public class Reference extends FacebookObject implements Serializable {

private final String name;

public Reference(String id) {
@SuppressWarnings("unused")
private Reference() {
this(null, null);
}

public Reference(String id) {
this(id, null);
}

Expand Down