Replace delete post page with Kotlin version
[Sone.git] / src / main / java / net / pterodactylus / sone / web / DeleteProfileFieldPage.java
index 852cc91..ffab3b7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DeleteProfileFieldPage.java - Copyright © 2011–2013 David Roden
+ * Sone - DeleteProfileFieldPage.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
@@ -52,8 +52,7 @@ public class DeleteProfileFieldPage extends SoneTemplatePage {
         * {@inheritDoc}
         */
        @Override
-       protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
-               super.processTemplate(request, templateContext);
+       protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
                Sone currentSone = getCurrentSone(request.getToadletContext());
                Profile profile = currentSone.getProfile();
 
@@ -67,11 +66,6 @@ public class DeleteProfileFieldPage extends SoneTemplatePage {
                /* process POST request. */
                if (request.getMethod() == Method.POST) {
                        if (request.getHttpRequest().getPartAsStringFailsafe("confirm", 4).equals("true")) {
-                               fieldId = request.getHttpRequest().getParam("field");
-                               field = profile.getFieldById(fieldId);
-                               if (field == null) {
-                                       throw new RedirectException("invalid.html");
-                               }
                                profile.removeField(field);
                                currentSone.setProfile(profile);
                        }