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
I've reduced the code to a minimum. Exit is printed to console, but VM keeps running. Environment is Java 17.0.11 running on Windows 11.
public static void main(String[] args) throws IOException { RssReader rssReader = new RssReader(); List<Item> items = rssReader.read("https://www.tagesschau.de/infoservices/alle-meldungen-100~rss2.xml").toList(); System.out.println(items); System.out.println("exit"); }
The text was updated successfully, but these errors were encountered:
Btw changing to Java 21.0.3 didn't change anything.
Sorry, something went wrong.
Another try but still no working
public static void main(String[] args) throws IOException { RssReader reader = new RssReader(); try (Stream<Item> rssFeed = reader.read(URL)) { } System.out.println("Exit"); }
Fixed by PR #171 Please try release v3.8.1
Sorry I wasn't at home. It's working again with 3.8.1. Thank you so much.
No branches or pull requests
I've reduced the code to a minimum. Exit is printed to console, but VM keeps running.
Environment is Java 17.0.11 running on Windows 11.
The text was updated successfully, but these errors were encountered: