X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FSoneTextParserContext.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FSoneTextParserContext.java;h=fba81abe1aa8523ef373cb6ca05dab8d27b1bbdb;hp=8918e40302bafd8bcac1f72d19c3ef80660b1df0;hb=e9dd4ebd28b5a429573f54565ea8215de5266a87;hpb=7d424e80eaf668651a2e2dfa242b75621f5def19 diff --git a/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java b/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java index 8918e40..fba81ab 100644 --- a/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java +++ b/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java @@ -29,35 +29,20 @@ import net.pterodactylus.sone.web.page.FreenetRequest; */ public class SoneTextParserContext implements ParserContext { - /** The request being processed. */ - private final FreenetRequest request; - /** The posting Sone. */ private final Sone postingSone; /** * Creates a new link parser context. * - * @param request - * The request being processed * @param postingSone * The posting Sone */ - public SoneTextParserContext(FreenetRequest request, Sone postingSone) { - this.request = request; + public SoneTextParserContext(Sone postingSone) { this.postingSone = postingSone; } /** - * Returns the request that is currently being processed. - * - * @return The request being processed - */ - public FreenetRequest getRequest() { - return request; - } - - /** * Returns the Sone that provided the text that is being parsed. * * @return The posting Sone