Merge branch 'master' of github.com:CitizensDev/Citizens2

This commit is contained in:
fullwall 2016-03-01 13:44:23 +08:00
commit ffd8b5e8d3
2 changed files with 7 additions and 10 deletions

View File

@ -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>

View File

@ -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];