Exact picture seems to work

This commit is contained in:
2025-09-02 21:53:03 +02:00
parent f15208fe6d
commit b2571c191f
137 changed files with 2487 additions and 797 deletions

View File

@@ -2,8 +2,8 @@ package ch.gtache.fro.jsoup;
import ch.gtache.fro.Bird;
import ch.gtache.fro.BirdProvider;
import ch.gtache.fro.Configuration;
import ch.gtache.fro.Fetcher;
import ch.gtache.fro.FetcherConfiguration;
import ch.gtache.fro.PictureType;
import ch.gtache.fro.SoundType;
import ch.gtache.fro.impl.AbstractFetcher;
@@ -28,7 +28,7 @@ public abstract class AbstractJSoupFetcher extends AbstractFetcher {
* @param configuration The configuration
* @throws NullPointerException If any parameter is null
*/
protected AbstractJSoupFetcher(final BirdProvider birdProvider, final Configuration configuration) {
protected AbstractJSoupFetcher(final BirdProvider birdProvider, final FetcherConfiguration configuration) {
super(birdProvider, configuration);
}

View File

@@ -3,7 +3,7 @@
*/
module ch.gtache.fro.jsoup {
requires transitive ch.gtache.fro.core;
requires org.jsoup;
requires transitive org.jsoup;
requires ch.gtache.fro.api;
requires org.apache.logging.log4j;