Skip to content

Commit 55e88bd

Browse files
committed
fix: add missing semi colon
1 parent bf5a33a commit 55e88bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/cryptlex/lexfloatclient/LexFloatClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static void SetHostUrl(String hostUrl) throws LexFloatClientException {
8080
*/
8181
public static void SetPermissionFlag(int flag) throws LexFloatClientException {
8282
int status;
83-
status = LexFloatClientNative.SetPermissionFlag(flag)
83+
status = LexFloatClientNative.SetPermissionFlag(flag);
8484

8585
if (LF_OK != status) {
8686
throw new LexFloatClientException(status);

0 commit comments

Comments
 (0)