Compare commits

1 Commits

Author SHA1 Message Date
ba6f5344ae Update Readme.txt 2025-10-16 10:51:21 +00:00
2 changed files with 4 additions and 6 deletions

View File

@@ -2,4 +2,4 @@ This is documentation of the project.
2nd line in readme
5th line in readme
Line from new_feature branch

View File

@@ -8,14 +8,12 @@ import java.util.Date;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("2nd message");
System.out.println("3rd message");
System.out.println("zmiana testttt");
System.out.println(new Date());
SpringApplication.run(DemoApplication.class, args);
}
SpringApplication.run(DemoApplication.class, args);
}
}