naming & bug fixing

This commit is contained in:
Marcel 2021-10-07 10:02:35 +02:00
parent 17e770ea38
commit 050d11254c
4 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
name: CI Tasks
name: CI Executor 1
on:
push:
branches: [main, dev]

View File

@ -1,4 +1,4 @@
name: CI Tasks
name: CI Executor 2
on:
push:
branches: [main, dev]

View File

@ -7,7 +7,6 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class AssignmentApplication {
public static void main(String[] args) {
System.out.println("TEST SONAR");
SpringApplication.run(AssignmentApplication.class, args);
}

View File

@ -7,7 +7,6 @@ import org.springframework.web.bind.annotation.RestController;
public class TestController {
@RequestMapping("/")
public String index() {
System.out.println("TEST");
return "Hello World! Executor Pool";
}
}