Skip to content

Commit

Permalink
#15928 fixes HTMLPageAssetRenderedTest (#15953)
Browse files Browse the repository at this point in the history
  • Loading branch information
wezell authored and dsilvam committed Feb 1, 2019
1 parent c585b94 commit 75cacb9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -362,7 +362,7 @@ public Optional<Contentlet> findContentletByIdentifierOrFallback(final String id

if (contentletVersionInfo == null) {

Optional.empty();
return Optional.empty();
}

final Contentlet contentlet = live?
Expand All @@ -371,7 +371,7 @@ public Optional<Contentlet> findContentletByIdentifierOrFallback(final String id

if (null == contentlet) {

Optional.empty();
return Optional.empty();
}

// if we are using the fallback, and it is not allowed, return empty
Expand Down

0 comments on commit 75cacb9

Please sign in to comment.