We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Outdated java example in wiki page :
public static void hello(String... names) { Observable.from(names).subscribe(new Action1<String>() { @Override public void call(String s) { System.out.println("Hello " + s + "!"); } }); }
Change it to
public static void hello(String... names) { Observable.fromArray(names).subscribe(s -> System.out.println("Hello " + s)); }
The text was updated successfully, but these errors were encountered:
java8......
Sorry, something went wrong.
Hello, I've created a pr about this issue.
Update outdated java example in wiki #6331 (#6351)
4f0cdca
* Update outdated java example in wiki #6331 * update wiki page similar to README * keep the original example
No branches or pull requests
Outdated java example in wiki page :
Change it to
The text was updated successfully, but these errors were encountered: