From d83536a1c21a7a61dea1e79e35cda6db1ad85d8e Mon Sep 17 00:00:00 2001 From: labkey-jeckels Date: Wed, 24 Jan 2024 10:23:28 -0800 Subject: [PATCH] Code review suggestions --- api/src/org/labkey/api/view/RedirectorServlet.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/api/src/org/labkey/api/view/RedirectorServlet.java b/api/src/org/labkey/api/view/RedirectorServlet.java index 3f6fba57a75..d30f2b7c7cb 100644 --- a/api/src/org/labkey/api/view/RedirectorServlet.java +++ b/api/src/org/labkey/api/view/RedirectorServlet.java @@ -1,8 +1,3 @@ -// -// Source code recreated from a .class file by IntelliJ IDEA -// (powered by FernFlower decompiler) -// - package org.labkey.api.view; import java.io.IOException; @@ -21,7 +16,7 @@ public RedirectorServlet(String legacyContextPath) { if (!legacyContextPath.startsWith("/") || legacyContextPath.length() < 2) { - throw new IllegalArgumentException("Invalid legacy context path: " + legacyContextPath); + throw new IllegalArgumentException("Legacy context path must start with / and cannot be the root context path. Invalid path: " + legacyContextPath + ", specified via context.legacyContextPath in application.properties"); } _legacyContextPath = legacyContextPath; } @@ -29,7 +24,6 @@ public RedirectorServlet(String legacyContextPath) @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { - if ("get".equalsIgnoreCase(request.getMethod())) { // Send a redirect to let the client know there's a new preferred URL