From 7f1ae63474f03d797c020ccb885385bc02eed918 Mon Sep 17 00:00:00 2001 From: Rahul Kausale Date: Wed, 4 Dec 2024 09:38:08 +0000 Subject: [PATCH] removing unused method --- .../java/com/example/helloworld/HelloWorldApplication.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/example/helloworld/HelloWorldApplication.java b/src/main/java/com/example/helloworld/HelloWorldApplication.java index a1c44d9e..e9d03977 100644 --- a/src/main/java/com/example/helloworld/HelloWorldApplication.java +++ b/src/main/java/com/example/helloworld/HelloWorldApplication.java @@ -7,9 +7,9 @@ public class HelloWorldApplication { // Example of dead code that will generate a warning in SonarQube - private void unusedMethod() { - System.out.println("This method is never used!"); - } + // private void unusedMethod() { + // System.out.println("This method is never used!"); + // } public static void main(String[] args) { SpringApplication.run(HelloWorldApplication.class, args);