We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84a7fb commit b117bc7Copy full SHA for b117bc7
src/main/java/com/falsepattern/lib/compat/MathHelper.java
@@ -20,12 +20,16 @@
20
*/
21
package com.falsepattern.lib.compat;
22
23
+import com.falsepattern.lib.DeprecationDetails;
24
+import com.falsepattern.lib.util.MathUtil;
25
+
26
import java.util.Random;
27
28
/**
- * This is here because the real MathHelper has some of its methods only present in clientside, some of which we
- * actually DO need in serverside.
29
+ * Alert: This class will be removed in 0.11, migrate to {@link MathUtil}!
30
31
+@Deprecated
32
+@DeprecationDetails(deprecatedSince = "0.10.0")
33
public class MathHelper {
34
35
* Though it looks like an array, this is really more like a mapping. Key (index of this array) is the upper 5 bits
0 commit comments