Merge pull request #40 from josebarrueta/Issue-39

Issue 39 - Add generic body type to the DefaultJws implementation.
This commit is contained in:
Les Hazlewood 2015-08-26 17:18:18 -07:00
commit 53f588f6e1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ package io.jsonwebtoken.impl;
import io.jsonwebtoken.Jws;
import io.jsonwebtoken.JwsHeader;
public class DefaultJws<B> implements Jws {
public class DefaultJws<B> implements Jws<B> {
private final JwsHeader header;
private final B body;