1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 21:49:22 +01:00

Fix Spacing Inconsistency

This commit is contained in:
Chaitya Shah 2015-10-16 20:49:00 -04:00
parent 9bb82465e6
commit 79008d76c9

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");