Skip to content

Commit f3478f5

Browse files
committed
Fix more javadoc
1 parent c206525 commit f3478f5

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/com/cake/azimuth/advancement/AzimuthAdvancementProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
* HELPER.register();
4141
* }
4242
*
43-
* public static void provideLang(BiConsumer<String, String> consumer) {
43+
* public static void provideLang(BiConsumer&lt;String, String&gt; consumer) {
4444
* HELPER.provideLang(consumer);
4545
* }
4646
*
47-
* public static DataProvider dataProvider(PackOutput output, CompletableFuture<HolderLookup.Provider> registries) {
47+
* public static DataProvider dataProvider(PackOutput output, CompletableFuture&lt;HolderLookup.Provider&gt; registries) {
4848
* return HELPER.dataProvider(output, registries);
4949
* }
5050
* }

src/main/java/com/cake/azimuth/behaviour/SuperBlockEntityBehaviour.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public static <T extends BlockEntityBehaviour> T getOrThrow(final BlockEntity be
135135
* <br/>
136136
* Example usage:
137137
* <pre>
138-
* if (controllerOffset != null && getLevel() != null) {
138+
* if (controllerOffset != null &amp;&amp; getLevel() != null) {
139139
* final BlockPos controllerPos = getPos().offset(controllerOffset);
140140
* CogwheelChainComponentBehaviour controller = this.getComplementaryBehaviour(controllerPos);
141141
* if (controller != null) {
@@ -166,9 +166,9 @@ public <T extends SuperBlockEntityBehaviour> T getSameBehaviour(final BlockPos o
166166
* <br/>
167167
* Example usage:
168168
* <pre>
169-
* if (controllerOffset != null && getLevel() != null) {
169+
* if (controllerOffset != null &amp;&amp; getLevel() != null) {
170170
* final BlockPos controllerPos = getPos().offset(controllerOffset);
171-
* this.<CogwheelChainComponentBehaviour>getComplementaryBehaviourOptional(controllerPos)
171+
* this.&lt;CogwheelChainComponentBehaviour&gt;getComplementaryBehaviourOptional(controllerPos)
172172
* .ifPresent(controller -> controller.chainsToRefund = 0);
173173
* }
174174
* </pre>
@@ -236,7 +236,7 @@ public <T extends SuperBlockEntityBehaviour> T getSameBehaviour(final BlockEntit
236236
* <br/>
237237
* Example usage:
238238
* <pre>
239-
* if (controllerOffset != null && getLevel() != null) {
239+
* if (controllerOffset != null &amp;&amp; getLevel() != null) {
240240
* final BlockPos controllerPos = getPos().offset(controllerOffset);
241241
* this.&lt;CogwheelChainComponentBehaviour&gt;getComplementaryBehaviourOptional(controllerPos)
242242
* .ifPresent(controller -> controller.chainsToRefund = 0);

0 commit comments

Comments
 (0)