Clean up imports
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / UnfollowSonePage.kt
index 3b299d2..cc411e2 100644 (file)
@@ -6,7 +6,6 @@ import net.pterodactylus.sone.web.WebInterface
 import net.pterodactylus.sone.web.page.FreenetRequest
 import net.pterodactylus.util.template.Template
 import net.pterodactylus.util.template.TemplateContext
 import net.pterodactylus.sone.web.page.FreenetRequest
 import net.pterodactylus.util.template.Template
 import net.pterodactylus.util.template.TemplateContext
-import java.util.regex.Pattern
 
 /**
  * This page lets the user unfollow another Sone.
 
 /**
  * This page lets the user unfollow another Sone.
@@ -14,13 +13,13 @@ import java.util.regex.Pattern
 class UnfollowSonePage(template: Template, webInterface: WebInterface):
                SoneTemplatePage("unfollowSone.html", template, "Page.UnfollowSone.Title", webInterface, true) {
 
 class UnfollowSonePage(template: Template, webInterface: WebInterface):
                SoneTemplatePage("unfollowSone.html", template, "Page.UnfollowSone.Title", webInterface, true) {
 
-       override fun handleRequest(request: FreenetRequest, templateContext: TemplateContext) {
-               if (request.isPOST) {
-                       getCurrentSone(request.toadletContext)!!.also { currentSone ->
-                               request.parameters["sone"]!!.split(Regex("[ ,]+"))
+       override fun handleRequest(freenetRequest: FreenetRequest, templateContext: TemplateContext) {
+               if (freenetRequest.isPOST) {
+                       getCurrentSone(freenetRequest.toadletContext)!!.also { currentSone ->
+                               freenetRequest.parameters["sone"]!!.split(Regex("[ ,]+"))
                                                .forEach { webInterface.core.unfollowSone(currentSone, it) }
                        }
                                                .forEach { webInterface.core.unfollowSone(currentSone, it) }
                        }
-                       throw RedirectException(request.parameters["returnPage", 256])
+                       throw RedirectException(freenetRequest.parameters["returnPage", 256])
                }
        }
 
                }
        }