Add commented line with code to return relative time in responses

This commit is contained in:
Colin McDonald 2016-07-10 12:18:33 -04:00
parent 53aa9ce368
commit a61ad36151
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ public final class InstantTypeAdapter extends TypeAdapter<Instant> {
if (write == null) {
writer.nullValue();
} else {
writer.value(write.toEpochMilli());
//writer.value(write.toEpochMilli() - System.currentTimeMillis());
writer.value(write.toEpochMilli());
}
}