Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelThessel committed Dec 16, 2013
1 parent 8a473c9 commit cda6bbe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions koans/src/beginner/AboutLoops.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void doLoop() {

@Koan
public void extendedForLoopBreak() {
String[] sa = {"Dog", "Cat", "Tiger" };
String[] sa = {"Dog", "Cat", "Tiger"};
int count = 0;
for(String current : sa) {
if("Cat".equals(current)) {
Expand All @@ -69,7 +69,7 @@ public void extendedForLoopBreak() {

@Koan
public void extendedForLoopContinue() {
String[] sa = {"Dog", "Cat", "Tiger" };
String[] sa = {"Dog", "Cat", "Tiger"};
int count = 0;
for(String current : sa) {
if("Dog".equals(current)) {
Expand All @@ -81,7 +81,6 @@ public void extendedForLoopContinue() {
assertEquals(count, __);
}


@Koan
public void forLoopContinueLabel() {
int count = 0;
Expand Down

0 comments on commit cda6bbe

Please sign in to comment.