Skip to content

Commit

Permalink
HSEARCH-3356 Fix AssertionFailure always reporting "Unknown failure"
Browse files Browse the repository at this point in the history
Signed-off-by: Yoann Rodière <yoann@hibernate.org>
  • Loading branch information
yrodiere committed Nov 2, 2020
1 parent ab26964 commit f3d8d45
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -19,7 +19,7 @@ public AssertionFailure(String message) {
}

private static String appendIssueReportRequest(String message) {
if ( message == null || !message.isEmpty() ) {
if ( message == null || message.isEmpty() ) {
// Shouldn't happen, but let's be safe.
message = "Unknown failure";
}
Expand Down

0 comments on commit f3d8d45

Please sign in to comment.