From 1be9d4f02ca26d003d97c4dd8284da6d3e1a1dea Mon Sep 17 00:00:00 2001 From: github-actions-bot Date: Sun, 19 Mar 2023 17:40:05 +0000 Subject: [PATCH] Update generated documentation --- generated/libs/BuiltIn.arucas | 2 +- generated/libs/Extensions.arucas | 6 +++--- generated/libs/util/Internal.arucas | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/generated/libs/BuiltIn.arucas b/generated/libs/BuiltIn.arucas index 848c12c..2f7a6c2 100644 --- a/generated/libs/BuiltIn.arucas +++ b/generated/libs/BuiltIn.arucas @@ -1110,7 +1110,7 @@ class String { * Parameter - Object (objects): The objects to insert. * Returns - String: The formatted string. */ - fun format(objects...: Object): String; + fun format(objects...): String; /* * This returns the length of the string. diff --git a/generated/libs/Extensions.arucas b/generated/libs/Extensions.arucas index f8116e7..460c7c0 100644 --- a/generated/libs/Extensions.arucas +++ b/generated/libs/Extensions.arucas @@ -103,7 +103,7 @@ fun print(value: Object): Null; * other wise it will print the contents without a new line. * Parameter - Object (value): The value to print. */ -fun print(value...: Object): Null; +fun print(value...): Null; /* * This logs something to the debug output. @@ -278,7 +278,7 @@ fun isWithinArea(x: Number, y: Number, z: Number): Boolean; . * Parameter - Object (args): The placement arguments, see the function description. */ -fun place(args...: Object): Null; +fun place(args...): Null; /* * This queries a the data for a block at a given position in a given dimension. @@ -297,7 +297,7 @@ fun place(args...: Object): Null; "state"- returns a map containing the state info "nbt"- returns a map containing all the nbt data. */ -fun query(args...: Object): String; +fun query(args...): String; /* * Modifies the origin of the defined area. diff --git a/generated/libs/util/Internal.arucas b/generated/libs/util/Internal.arucas index 7b01010..ee21156 100644 --- a/generated/libs/util/Internal.arucas +++ b/generated/libs/util/Internal.arucas @@ -15,7 +15,7 @@ class Java { * Parameter - Object (parameters): The parameters to call the method with. * Returns - Java: The return value of the method call wrapped in the Java wrapper. */ - fun callMethod(methodName: String, parameters...: Object): Java; + fun callMethod(methodName: String, parameters...): Java; /* * Deprecated: You should call the method directly on the value: `Java.constructClass('me.senseiwells.impl.Test').A;` @@ -63,7 +63,7 @@ class Java { * Parameter - Object (values): The values to add to the array. * Returns - Java: The Java Object array. */ - static fun arrayOf(values...: Object): Java; + static fun arrayOf(values...): Java; /* * Creates a Java boolean array with a given size, the array is filled with false @@ -105,7 +105,7 @@ class Java { * Parameter - Object (parameters): Any parameters to call the method with. * Returns - Java: The return value of the method wrapped in the Java wrapper. */ - static fun callStaticMethod(className: String, methodName: String, parameters...: Object): Java; + static fun callStaticMethod(className: String, methodName: String, parameters...): Java; /* * Creates a Java char array with a given size, the array is filled with null characters's @@ -146,7 +146,7 @@ class Java { * Parameter - Object (parameters): Any parameters to pass to the constructor. * Returns - Java: The constructed Java Object wrapped in the Java wrapper. */ - static fun constructClass(className: String, parameters...: Object): Java; + static fun constructClass(className: String, parameters...): Java; /* * Creates a Java Consumer object from a given function, it must have one @@ -323,7 +323,7 @@ class Java { * Parameter - Java (values): The values to add to the array. * Returns - Java: The typed object array. */ - static fun typedArrayOf(castType: JavaClass, values...: Java): Java; + static fun typedArrayOf(castType: JavaClass, values...): Java; /* * Converts any Arucas value into a Java value then wraps it in the Java wrapper and returns it.