You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/de/bluecolored/bluemap/api/BlueMapAPIListener.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,16 +29,16 @@ public interface BlueMapAPIListener {
29
29
/**
30
30
* Called when BlueMap has been loaded and started and the API is ready to use.<br>
31
31
* If {@link BlueMapAPI} is already enabled when this listener is registered this method will be called immediately <i>(on the same thread)</i>!
32
-
* <p><i>(Note: This method will likely be called asynchronously, <b>not</b> on the server-thread!</i><p>
32
+
* <p><i>(Note: This method will likely be called asynchronously, <b>not</b> on the server-thread!</i></p>
33
33
* @param blueMapApi the {@link BlueMapAPI}
34
34
*/
35
35
defaultvoidonEnable(BlueMapAPIblueMapApi) {}
36
36
37
37
/**
38
38
* Called <b>before</b> BlueMap is being unloaded and stopped, after this method returns the API is no longer usable!<br>
39
39
* Unlike {@link BlueMapAPIListener#onEnable(BlueMapAPI)}, if {@link BlueMapAPI} is not enabled when this listener is registered this method will <b>not</b> be called immediately.
40
-
* <p><i>(Note: This method will likely be called asynchronously, <b>not</b> on the server-thread!</i><p>
41
-
* @param blueMapApi
40
+
* <p><i>(Note: This method will likely be called asynchronously, <b>not</b> on the server-thread!</i></p>
Copy file name to clipboardExpand all lines: src/main/java/de/bluecolored/bluemap/api/BlueMapWorld.java
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -41,13 +41,14 @@ public interface BlueMapWorld {
41
41
* <p>
42
42
* <b>Implementation notes:</b><br>
43
43
* The used UUID highly depends on the implementation
44
+
* </p>
44
45
* <table>
45
-
* <tr><th>Sponge</th><td>The UUID is equal to the returned UUID by world-instances of the Sponge-API, so you can just use <code>spongeWorld.getUniqueId()</code><td><tr>
46
-
* <tr><th>Bukkit</th><td>The UUID is equal to the returned UUID by world-instances of the Bukkit-API, so you can just use <code>bukkitWorld.getUID()</code><td><tr>
47
-
* <tr><th>Forge</th><td>The UUID is randomly generated, and changes on each reload/restart</code><td><tr>
48
-
* <tr><th>CLI</th><td>The UUID is randomly generated, and changes on each reload/restart</code><td><tr>
46
+
* <caption>Implementations</caption>
47
+
* <tr><th>Sponge</th><td>The UUID is equal to the returned UUID by world-instances of the Sponge-API, so you can just use <code>spongeWorld.getUniqueId()</code></td></tr>
48
+
* <tr><th>Bukkit</th><td>The UUID is equal to the returned UUID by world-instances of the Bukkit-API, so you can just use <code>bukkitWorld.getUID()</code></td></tr>
49
+
* <tr><th>Forge</th><td>The UUID is randomly generated, and changes on each reload/restart</td></tr>
50
+
* <tr><th>CLI</th><td>The UUID is randomly generated, and changes on each reload/restart</td></tr>
0 commit comments