Skip to content

Commit 53d33b1

Browse files
committed
Correct @SInCE annotations to reflect accurate versioning (v0.2.0).
1 parent 6edbe8f commit 53d33b1

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

aether-datafixers-api/src/main/java/de/splatgames/aether/datafixers/api/rewrite/BatchTransform.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
* @param <T> the underlying data format type (e.g., JsonElement)
7676
* @author Erik Pförtner
7777
* @see Rules#batch(DynamicOps, java.util.function.Consumer)
78-
* @since 0.3.0
78+
* @since 0.2.0
7979
*/
8080
public final class BatchTransform<T> {
8181

aether-datafixers-api/src/main/java/de/splatgames/aether/datafixers/api/rewrite/Rules.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ public static <T> TypeRewriteRule transformField(@NotNull final DynamicOps<T> op
11281128
* @return a rule that applies all operations in a single pass, never {@code null}
11291129
* @throws NullPointerException if any argument is {@code null}
11301130
* @see BatchTransform
1131-
* @since 0.3.0
1131+
* @since 0.2.0
11321132
*/
11331133
@NotNull
11341134
public static <T> TypeRewriteRule batch(@NotNull final DynamicOps<T> ops,
@@ -2013,7 +2013,7 @@ public String toString() {
20132013
* @param transform the transformation to apply if condition is true, must not be {@code null}
20142014
* @return a conditional rule that operates in a single pass, never {@code null}
20152015
* @throws NullPointerException if any argument is {@code null}
2016-
* @since 0.3.0
2016+
* @since 0.2.0
20172017
*/
20182018
@NotNull
20192019
public static <T> TypeRewriteRule conditionalTransform(
@@ -2059,7 +2059,7 @@ public static <T> TypeRewriteRule conditionalTransform(
20592059
* @param transform the transformation to apply if field exists, must not be {@code null}
20602060
* @return a conditional rule that operates in a single pass, never {@code null}
20612061
* @throws NullPointerException if any argument is {@code null}
2062-
* @since 0.3.0
2062+
* @since 0.2.0
20632063
*/
20642064
@NotNull
20652065
public static <T> TypeRewriteRule ifFieldExists(
@@ -2105,7 +2105,7 @@ public static <T> TypeRewriteRule ifFieldExists(
21052105
* @param transform the transformation to apply if field is missing, must not be {@code null}
21062106
* @return a conditional rule that operates in a single pass, never {@code null}
21072107
* @throws NullPointerException if any argument is {@code null}
2108-
* @since 0.3.0
2108+
* @since 0.2.0
21092109
*/
21102110
@NotNull
21112111
public static <T> TypeRewriteRule ifFieldMissing(
@@ -2154,7 +2154,7 @@ public static <T> TypeRewriteRule ifFieldMissing(
21542154
* @param transform the transformation to apply if field equals value, must not be {@code null}
21552155
* @return a conditional rule that operates in a single pass, never {@code null}
21562156
* @throws NullPointerException if any argument is {@code null}
2157-
* @since 0.3.0
2157+
* @since 0.2.0
21582158
*/
21592159
@NotNull
21602160
public static <T, V> TypeRewriteRule ifFieldEquals(

0 commit comments

Comments
 (0)