Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #349 from Serchinastico/fix-serialization-issue
Browse files Browse the repository at this point in the history
Fix serialization issue
  • Loading branch information
joscha committed Aug 31, 2017
2 parents eedf45a + 2a709ea commit 68c7908
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -75,6 +75,10 @@ public static abstract class Constants {
public static class SerializableRequestToken extends RequestToken implements Serializable {
private static final long serialVersionUID = 1L;

public SerializableRequestToken() {
super(null, null);
}

public SerializableRequestToken(RequestToken source) {
super(source.token, source.secret);
}
Expand Down

0 comments on commit 68c7908

Please sign in to comment.