Skip to content

Commit 9967812

Browse files
committed
update
1 parent 99eb2cf commit 9967812

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/sourcelab/hkp/parser/SearchIndexResponseParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ private Pub parsePub(final String line) throws IOException {
8383
.withKeyId(fields.get(1))
8484
.withAlgo(Integer.parseInt(fields.get(2)))
8585
.withKeyLen(Integer.parseInt(fields.get(3)))
86-
.withCreationDate(Long.parseLong(fields.get(4)))
87-
.withExpirationDate(Long.parseLong(fields.get(5)))
86+
.withCreationDate(fields.get(4))
87+
.withExpirationDate(fields.get(5))
8888
.withFlags(fields.get(6))
8989
.build();
9090
}

0 commit comments

Comments
 (0)