mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
notready -> notReady
This commit is contained in:
parent
b395616c04
commit
754e9754a0
|
@ -47,7 +47,7 @@ sjcl.random = {
|
||||||
var out = [], i, readiness = this.isReady(paranoia), g;
|
var out = [], i, readiness = this.isReady(paranoia), g;
|
||||||
|
|
||||||
if (readiness === this._NOT_READY) {
|
if (readiness === this._NOT_READY) {
|
||||||
throw new sjcl.exception.notready("generator isn't seeded");
|
throw new sjcl.exception.notReady("generator isn't seeded");
|
||||||
} else if (readiness & this._REQUIRES_RESEED) {
|
} else if (readiness & this._REQUIRES_RESEED) {
|
||||||
this._reseedFromPools(!(readiness & this._READY));
|
this._reseedFromPools(!(readiness & this._READY));
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@ var sjcl = {
|
||||||
},
|
},
|
||||||
|
|
||||||
/** @class Something isn't ready. */
|
/** @class Something isn't ready. */
|
||||||
notready: function(message) {
|
notReady: function(message) {
|
||||||
this.toString = function() { return "NOT READY: "+this.message; };
|
this.toString = function() { return "NOT READY: "+this.message; };
|
||||||
this.message = message;
|
this.message = message;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user