Skip to content

Commit

Permalink
LPS-58402 Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
hhuijser authored and brianchandotcom committed Sep 4, 2015
1 parent cb8c361 commit abc9319
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ import org.osgi.service.component.annotations.Component;
)
public class IncorrectWhitespace {

public boolean isGif () {
return true;
}

public void method1 (String s1 ,String s2,String s3 , String s4) {
String s5 = s1;

Expand All @@ -45,6 +49,10 @@ public class IncorrectWhitespace {
String s8 = s4;
}
String s9 = s5;

if (isGif()) {
return;
}
}

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ import org.osgi.service.component.annotations.Component;
)
public class IncorrectWhitespace {

public boolean isGif() {
return true;
}

public void method1(String s1, String s2, String s3, String s4) {
String s5 = s1;

Expand All @@ -45,6 +49,10 @@ public class IncorrectWhitespace {
}

String s9 = s5;

if (isGif()) {
return;
}
}

/**
Expand Down

0 comments on commit abc9319

Please sign in to comment.