Skip to content

Commit

Permalink
Merge pull request #15 from TNG/issue_12_make_helper_methods_accessible
Browse files Browse the repository at this point in the history
Issue 12 make helper methods accessible
  • Loading branch information
jonashoef authored Oct 3, 2021
2 parents eb518ca + 349a03e commit 7a446c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ public boolean equals(Object obj) {
return seed == other.seed;
}

boolean nextBoolean() {
public boolean nextBoolean() {
return random.nextBoolean();
}

int nextInt(int bound) {
public int nextInt(int bound) {
return random.nextInt(bound);
}

double nextDouble() {
public double nextDouble() {
return random.nextDouble();
}

long nextLong() {
public long nextLong() {
return random.nextLong();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1034,15 +1034,15 @@ private URL createUrl(String scheme, String domain) {
}
}

String getPrefix() {
protected String getPrefix() {
return prefix;
}

String getSuffix() {
protected String getSuffix() {
return suffix;
}

RandomValues getRandom() {
protected RandomValues getRandom() {
return random;
}

Expand Down

0 comments on commit 7a446c0

Please sign in to comment.