fix(java): java 8 compatible javadocs

This commit is contained in:
zaaarf 2024-09-18 03:27:33 +02:00
parent 7c92b94a07
commit 073de5e81f
No known key found for this signature in database
GPG key ID: C91CFF9E2262BBA1

View file

@ -11,11 +11,10 @@ import mp.code.exceptions.ControllerException;
/** /**
* Represents a CodeMP workspace, which broadly speaking is a collection * Represents a CodeMP workspace, which broadly speaking is a collection
* of buffers across which edits and cursor movements are tracked. * of buffers across which edits and cursor movements are tracked.
* @apiNote Generally, it is safer to avoid storing this directly. * Generally, it is safer to avoid storing this directly. Instead,
* Instead, users should let the native library manage as * users should let the native library manage as much as possible for
* much as possible for them. * them. They should store the workspace ID and retrieve the object
* They should store the workspace ID and retrieve the object * whenever needed with {@link Client#getWorkspace(String)}.
* whenever needed with {@link Client#getWorkspace(String)}.
*/ */
public final class Workspace { public final class Workspace {
private final long ptr; private final long ptr;