X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FSoneTextParserContext.java;h=fba81abe1aa8523ef373cb6ca05dab8d27b1bbdb;hb=e9dd4ebd28b5a429573f54565ea8215de5266a87;hp=4a890165a4f001f9848877618d099e330f3a9a35;hpb=47ed7eaf00c35889781831d33d04e9f91c9ad266;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java b/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java index 4a89016..fba81ab 100644 --- a/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java +++ b/src/main/java/net/pterodactylus/sone/text/SoneTextParserContext.java @@ -1,5 +1,5 @@ /* - * Sone - SoneTextParserContext.java - Copyright © 2011 David Roden + * Sone - SoneTextParserContext.java - Copyright © 2011–2016 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ package net.pterodactylus.sone.text; import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.web.page.Page.Request; +import net.pterodactylus.sone.web.page.FreenetRequest; /** * {@link ParserContext} implementation for the {@link SoneTextParser}. It @@ -29,35 +29,20 @@ import net.pterodactylus.sone.web.page.Page.Request; */ public class SoneTextParserContext implements ParserContext { - /** The request being processed. */ - private final Request 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(Request 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 Request getRequest() { - return request; - } - - /** * Returns the Sone that provided the text that is being parsed. * * @return The posting Sone