1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 09:14:39 +02:00

Merge pull request #1580 from chaityabshah/master

Java/EN - Fix Spacing Inconsistency
This commit is contained in:
Adam Bard
2015-10-17 09:10:23 +08:00

View File

@@ -250,7 +250,7 @@ public class LearnJava {
// If statements are c-like
int j = 10;
if (j == 10){
if (j == 10) {
System.out.println("I get printed");
} else if (j > 10) {
System.out.println("I don't");