Skip to content

Commit

Permalink
Fix renaming error
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjndw authored Jan 9, 2025
1 parent 0ea2be4 commit 7608293
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package thesistrack.ls1;
package thesismanagement.ls1;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -10,11 +10,11 @@

@SpringBootApplication
@EnableScheduling
public class ThesisTrackApplication implements ApplicationRunner {
private static final Logger logger = LoggerFactory.getLogger(ThesisTrackApplication.class);
public class ThesisManagementApplication implements ApplicationRunner {
private static final Logger logger = LoggerFactory.getLogger(ThesisManagementApplication.class);

public static void main(String[] args) {
SpringApplication.run(ThesisTrackApplication.class, args);
SpringApplication.run(ThesisManagementApplication.class, args);
}

@Override
Expand Down

0 comments on commit 7608293

Please sign in to comment.