Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public static String GetHostLicenseMetadata(String key) throws LexFloatClientExc
}
throw new LexFloatClientException(status);
}

/**
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@muneebkq Remove the extra line

* Gets the license meter attribute allowed uses and total uses associated
* with the LexFloatServer license.
Expand Down Expand Up @@ -360,6 +360,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