Skip to content

Commit

Permalink
Suppress PMD
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesDuboisSAP committed Aug 13, 2024
1 parent 5824811 commit 008df1c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.sap.ai.sdk.app;

import jakarta.servlet.ServletContext;
import jakarta.servlet.ServletException;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down Expand Up @@ -30,8 +31,9 @@ public static void main(final String[] args) {
* This exists only to import ServletException. This import exists only to justify the dependency
* jetty-jakarta-servlet-api for the maven-dependency-plugin to succeed.
*/
@SuppressWarnings("PMD.UselessOverridingMethod")
@Override
public void onStartup(jakarta.servlet.ServletContext servletContext) throws ServletException {
public void onStartup(final ServletContext servletContext) throws ServletException {
super.onStartup(servletContext);
}
}

0 comments on commit 008df1c

Please sign in to comment.