Skip to content

Commit a68edf0

Browse files
committed
Fix checkstyle errors
1 parent 0f35681 commit a68edf0

File tree

2 files changed

+3
-2
lines changed
  • object-mother/src/main/java/com/iluwatar/objectmother
  • update-method/src/main/java/com/iluwatar/updatemethod

2 files changed

+3
-2
lines changed

object-mother/src/main/java/com/iluwatar/objectmother/Queen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ public void setFlirtiness(boolean flirtiness) {
6666
* @return A value which describes if the flirt was successful or not.
6767
*/
6868
public boolean getFlirted(King king) {
69-
return this.isFlirty && king.isHappy && !king.isDrunk;
69+
return this.isFlirty && king.isHappy && !king.isDrunk;
7070
}
7171
}

update-method/src/main/java/com/iluwatar/updatemethod/World.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ private void update() {
8787
* Render the next frame. Here we do nothing since it is not related to the
8888
* pattern.
8989
*/
90-
private void render() {}
90+
private void render() {
91+
}
9192

9293
/**
9394
* Run game loop.

0 commit comments

Comments
 (0)