X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FSoneProvider.java;h=6b479df5baec88174a6ffa6e0858a1fbe284181d;hp=73edd0b6e489ed65a33b67515b6d41b41098b64d;hb=7f024734546973cd592e6cbf04604705477f15f6;hpb=c30ad3a3fcfc66d0c1757a50afe413d9942d7793 diff --git a/src/main/java/net/pterodactylus/sone/core/SoneProvider.java b/src/main/java/net/pterodactylus/sone/core/SoneProvider.java index 73edd0b..6b479df 100644 --- a/src/main/java/net/pterodactylus/sone/core/SoneProvider.java +++ b/src/main/java/net/pterodactylus/sone/core/SoneProvider.java @@ -27,17 +27,12 @@ import net.pterodactylus.sone.data.Sone; public interface SoneProvider { /** - * Returns the Sone with the given ID, if it exists. If it does not exist - * and {@code create} is {@code false}, {@code null} is returned; otherwise, - * a new Sone with the given ID is created and returned. + * Returns the Sone with the given ID, if it exists. * * @param soneId * The ID of the Sone to return - * @param create - * {@code true} to create a new Sone if no Sone with the given ID - * exists, {@code false} to return {@code null} instead * @return The Sone with the given ID, or {@code null} */ - public Sone getSone(String soneId, boolean create); + public Sone getSone(String soneId); }