formatting

This commit is contained in:
Brian Matzon 2016-06-08 00:20:23 +02:00 committed by matzon
parent 4be4912cb2
commit f08386c63b
1 changed files with 2 additions and 4 deletions

View File

@ -157,14 +157,12 @@ public class JwtMap implements Map<String,Object> {
} }
@Override @Override
public int hashCode() public int hashCode() {
{
return map.hashCode(); return map.hashCode();
} }
@Override @Override
public boolean equals(Object obj) public boolean equals(Object obj) {
{
return map.equals(obj); return map.equals(obj);
} }
} }