Skip to content

Commit 40140f8

Browse files
committed
Fix javadoc errors
1 parent f44fd20 commit 40140f8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public interface BlueMapMap {
115115
boolean isFrozen();
116116

117117
/**
118-
* Returns the currently set TileFilter. The default TileFilter is equivalent to <code>t -> true</code>.
118+
* Returns the currently set TileFilter. The default TileFilter is equivalent to <code>t -&gt; true</code>.
119119
*/
120120
Predicate<Vector2i> getTileFilter();
121121

src/main/java/de/bluecolored/bluemap/api/ContentTypeRegistry.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static String fromFileSuffix(String suffix) {
110110
}
111111

112112
/**
113-
* Registers a new file-suffix => content-type mapping to this registry.
113+
* Registers a new file-suffix =&gt; content-type mapping to this registry.
114114
* @param fileSuffix The type-suffix of a file-name
115115
* @param contentType The content-type string
116116
*/

src/main/java/de/bluecolored/bluemap/api/WebApp.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public interface WebApp {
6565
* <br>
6666
* Example:
6767
* <pre>
68-
* BlueMapAPI.onEnable(api -> {
68+
* BlueMapAPI.onEnable(api -&gt; {
6969
* api.getWebApp().registerStyle("js/my-custom-style.css");
7070
* });
7171
* </pre>
@@ -83,7 +83,7 @@ public interface WebApp {
8383
* <br>
8484
* Example:
8585
* <pre>
86-
* BlueMapAPI.onEnable(api -> {
86+
* BlueMapAPI.onEnable(api -&gt; {
8787
* api.getWebApp().registerScript("js/my-custom-script.js");
8888
* });
8989
* </pre>

0 commit comments

Comments
 (0)