Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SvAddressProvider never provides an apartment number #132

Open
rweisleder opened this issue Jun 11, 2020 · 0 comments
Open

SvAddressProvider never provides an apartment number #132

rweisleder opened this issue Jun 11, 2020 · 0 comments

Comments

@rweisleder
Copy link
Contributor

The SvAddressProvider always provides an empty string as apartment number:

@Override
public String getApartmentNumber() {
return baseProducer.randomInt(20) < 0 ? String.valueOf(baseProducer.randomInt(350)) : "";
}

baseProducer.randomInt(20) returns an int between 0 and 20 (both inclusive), so it will be never less than 0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant