Fix javadoc errors

This commit is contained in:
Lukas Rieger (Blue) 2023-06-26 16:38:59 +02:00
parent f44fd20f5f
commit 40140f87c6
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
3 changed files with 4 additions and 4 deletions

View File

@ -115,7 +115,7 @@ public interface BlueMapMap {
boolean isFrozen();
/**
* Returns the currently set TileFilter. The default TileFilter is equivalent to <code>t -> true</code>.
* Returns the currently set TileFilter. The default TileFilter is equivalent to <code>t -&gt; true</code>.
*/
Predicate<Vector2i> getTileFilter();

View File

@ -110,7 +110,7 @@ public class ContentTypeRegistry {
}
/**
* Registers a new file-suffix => content-type mapping to this registry.
* Registers a new file-suffix =&gt; content-type mapping to this registry.
* @param fileSuffix The type-suffix of a file-name
* @param contentType The content-type string
*/

View File

@ -65,7 +65,7 @@ public interface WebApp {
* <br>
* Example:
* <pre>
* BlueMapAPI.onEnable(api -> {
* BlueMapAPI.onEnable(api -&gt; {
* api.getWebApp().registerStyle("js/my-custom-style.css");
* });
* </pre>
@ -83,7 +83,7 @@ public interface WebApp {
* <br>
* Example:
* <pre>
* BlueMapAPI.onEnable(api -> {
* BlueMapAPI.onEnable(api -&gt; {
* api.getWebApp().registerScript("js/my-custom-script.js");
* });
* </pre>