Skip to content

Commit

Permalink
Added spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikhofer committed May 4, 2017
1 parent ea1b6c8 commit 2ff00f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/groovy/com/xinra/nucleus/service/TestDtoImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ public class TestDtoImpl extends DtoImpl implements TestDto {
public int getFoo() {
return foo;
}

public void setFoo(int foo) {
this.foo = foo;
}

public boolean getBar() {
return bar;
}

public boolean isBar() {
return bar;
}

public void setBar(boolean bar) {
this.bar = bar;
}
Expand Down

0 comments on commit 2ff00f1

Please sign in to comment.