mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
fix(java): bad user_list signature
This commit is contained in:
parent
a4ab840211
commit
5c76fcf92e
1 changed files with 3 additions and 3 deletions
6
dist/java/src/mp/code/Workspace.java
vendored
6
dist/java/src/mp/code/Workspace.java
vendored
|
@ -80,13 +80,13 @@ public final class Workspace {
|
||||||
return active_buffers(this.ptr);
|
return active_buffers(this.ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static native String[] user_list(long self);
|
private static native User[] user_list(long self);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the users currently in the workspace.
|
* Returns the users currently in the workspace.
|
||||||
* @return an array containing the names of the users in the workspace
|
* @return an array containing the users in the workspace
|
||||||
*/
|
*/
|
||||||
public String[] userList() {
|
public User[] userList() {
|
||||||
return user_list(this.ptr);
|
return user_list(this.ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue