Skip to content

Commit

Permalink
Merge pull request #11 from cryptlex/muneeb/fix-hasfloatinglicense
Browse files Browse the repository at this point in the history
fix: add LF_FAIL switch case
  • Loading branch information
ahmad-kemsan authored Jul 25, 2024
2 parents 7cb9f7b + d85b030 commit 4d58bc4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,8 @@ public static boolean HasFloatingLicense() throws LexFloatClientException {
return true;
case LexFloatClientException.LF_E_NO_LICENSE:
return false;
case LexFloatClientException.LF_FAIL:
return false;
default:
throw new LexFloatClientException(status);
}
Expand Down

0 comments on commit 4d58bc4

Please sign in to comment.