X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Freactor%2FQuery.java;h=0b46a391b0db39939ef27965f3a39656bd8fed98;hb=428acf8306397d8e170c950d1ec88870ae45acfb;hp=cc868bb7fc2b1d52ebde8ee24789b4599518a481;hpb=fa75d2b7dde0cd47d14bc4a5307b45def635b285;p=rhynodge.git diff --git a/src/main/java/net/pterodactylus/reactor/Query.java b/src/main/java/net/pterodactylus/reactor/Query.java index cc868bb..0b46a39 100644 --- a/src/main/java/net/pterodactylus/reactor/Query.java +++ b/src/main/java/net/pterodactylus/reactor/Query.java @@ -20,11 +20,9 @@ package net.pterodactylus.reactor; /** * A query is used to retrieve the current {@link State} of a system. * - * @param - * The type of the state * @author David ‘Bombe’ Roden */ -public interface Query { +public interface Query { /** * Retrieves the current state of the system. The returned state is never @@ -32,6 +30,6 @@ public interface Query { * * @return The current state of the system. */ - public S state(); + public State state(); }