Skip to content

Commit

Permalink
Issue - 41 : Invalid Null Check - Exception in BusdoxReader.java
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kumar committed May 2, 2021
1 parent ddda09a commit 84fd271
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public ServiceMetadata getServiceMetadata(ServiceInformationType serviceInformat
Period period = Period.of(
endpointType.getServiceActivationDate() == null ?
null : endpointType.getServiceActivationDate().toGregorianCalendar().getTime(),
endpointType.getServiceActivationDate() == null ?
endpointType.getServiceExpirationDate() == null ?
null : endpointType.getServiceExpirationDate().toGregorianCalendar().getTime()
);

Expand Down

0 comments on commit 84fd271

Please sign in to comment.