mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-12-28 03:57:35 +01:00
Correct pom, erroneous javadocs
This commit is contained in:
parent
31e83a904b
commit
8bd8c96abd
2
pom.xml
2
pom.xml
@ -11,7 +11,7 @@
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<craftbukkit.version>1.9-R0.1-SNAPSHOT</craftbukkit.version>
|
||||
<craftbukkit.version>1.9-SNAPSHOT</craftbukkit.version>
|
||||
<citizensapi.version>2.0.17-SNAPSHOT</citizensapi.version>
|
||||
<vault.version>1.5.4</vault.version>
|
||||
<powermock.version>1.4.12</powermock.version>
|
||||
|
@ -22,7 +22,7 @@ import java.util.concurrent.locks.ReentrantLock;
|
||||
* <p>
|
||||
* Very fast pseudo random number generator. See
|
||||
* <a href= "http://school.anhb.uwa.edu.au/personalpages/kwessen/shared/Marsaglia03.html" >this page</a> for a
|
||||
* description. This RNG has a period of about 2^160, which is not as long as the {@link MersenneTwisterRNG} but it is
|
||||
* description. This RNG has a period of about 2^160, which is not as long as the MersenneTwisterRNG but it is
|
||||
* faster.
|
||||
* </p>
|
||||
*
|
||||
@ -52,9 +52,6 @@ public class XORShiftRNG extends Random {
|
||||
|
||||
/**
|
||||
* Creates an RNG and seeds it with the specified seed data.
|
||||
*
|
||||
* @param seed
|
||||
* The seed data used to initialise the RNG.
|
||||
*/
|
||||
public XORShiftRNG() {
|
||||
this.seed = new byte[SEED_SIZE_BYTES];
|
||||
|
Loading…
Reference in New Issue
Block a user