Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Jun 26, 2023
1 parent f44fd20 commit 40140f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static String fromFileSuffix(String suffix) {
}

/**
* 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
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/bluecolored/bluemap/api/WebApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit 40140f8

Please sign in to comment.