Skip to content

Commit

Permalink
Fix erroneous traits used for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
obruchez committed Feb 16, 2024
1 parent b23911f commit 0c58b29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -16,7 +16,7 @@ package org.orbeon.oxf.controller
import org.orbeon.oxf.servlet._

// For backward compatibility
trait AuthorizerServlet extends JavaxAuthorizerServlet
class AuthorizerServlet extends JavaxAuthorizerServlet

class JavaxAuthorizerServlet extends JavaxServiceHttpServlet (new AuthorizerServletImpl)
class JakartaAuthorizerServlet extends JakartaServiceHttpServlet(new AuthorizerServletImpl)
Expand Down
Expand Up @@ -21,7 +21,7 @@ import scala.jdk.CollectionConverters._
// </filter-mapping>

// For backward compatibility
trait HttpLoggingFilter extends JavaxHttpLoggingFilter
class HttpLoggingFilter extends JavaxHttpLoggingFilter

class JavaxHttpLoggingFilter extends JavaxFilter (new HttpLoggingFilterImpl)
class JakartaHttpLoggingFilter extends JakartaFilter(new HttpLoggingFilterImpl)
Expand Down

0 comments on commit 0c58b29

Please sign in to comment.