Skip to content

Commit 37a6486

Browse files
Ranga Rao KaranamRanga Rao Karanam
authored andcommitted
I'm too lazy to put in a comment
1 parent d4ef0d2 commit 37a6486

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@
2020

2121
## Installing Tools
2222
- PDF : https://github.com/in28minutes/SpringIn28Minutes/blob/master/InstallationGuide-JavaEclipseAndMaven_v2.pdf
23-
- https://www.youtube.com/watch?v=DLPjCZ5n_SM
23+
- Video : https://www.youtube.com/playlist?list=PLBBog2r6uMCSmMVTW_QmDLyASBvovyAO3
24+
- GIT Repository : https://github.com/in28minutes/getting-started-in-5-steps
2425

2526
## Running Examples
2627
- Download the zip or clone the Git repository.
2728
- Unzip the zip file (if you downloaded one)
2829
- Open Command Prompt and Change directory (cd) to folder containing pom.xml
29-
- Run command "mvn tomcat7:run"
30-
- For help : use our installation guide - https://github.com/in28minutes/SpringIn28Minutes/blob/master/InstallationGuide-JavaEclipseAndMaven_v2.pdf & https://www.youtube.com/watch?v=DLPjCZ5n_SM
30+
- Installation Video : https://www.youtube.com/playlist?list=PLBBog2r6uMCSmMVTW_QmDLyASBvovyAO3
31+
- For help : use our installation guide - https://github.com/in28minutes/SpringIn28Minutes/blob/master/InstallationGuide-JavaEclipseAndMaven_v2.pdf
3132

3233
## Course Overview
3334

src/test/java/com/in28minutes/java/beginner/junit/examples/string/StringVsStringBufferPerformanceTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class StringVsStringBufferPerformanceTest {
88
public void testWithStringBuffer() {
99
StringBuffer s3 = new StringBuffer("Value1");
1010
String s2 = "Value2";
11-
for (int i = 0; i < 100000; ++i) {
11+
for (int i = 0; i < 10000; ++i) {
1212
s3.append(s2);
1313
}
1414
System.out.println(s3);
@@ -18,7 +18,7 @@ public void testWithStringBuffer() {
1818
public void testWithString() {
1919
String s3 = "Value1";
2020
String s2 = "Value2";
21-
for (int i = 0; i < 100000; ++i) {
21+
for (int i = 0; i < 10000; ++i) {
2222
s3 = s3 + s2;
2323
}
2424
System.out.println(s3);

0 commit comments

Comments
 (0)