Maescool / Catacomb-Snatch

Mojang's Humble bundle source
Other
295 stars 99 forks source link

Fixed indentation and code style. #894

Closed spodernet closed 12 years ago

spodernet commented 12 years ago

Fixed indentation and code style in:

Stuessy commented 12 years ago

Very good! But I have one remark.

Bad

if (condition)
    doSomethingElse();

Good

if (condition) {
    doSomethingElse();
}

;)

spodernet commented 12 years ago

@Stuessy I will fix it!

spodernet commented 12 years ago

Can we merge this, or there is something wrong?