Skip to content

Commit

Permalink
checkstyle 7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMayfield committed Sep 7, 2016
1 parent 390cbbe commit bc92797
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ap02/Moire.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static void main(String[] args) {
public void paint(Graphics g) {
int i = 90;
while (i < getWidth()) {
g.drawOval (0, 0, i, i);
g.drawOval(0, 0, i, i);
i = i + 3;
}
}
Expand Down
2 changes: 0 additions & 2 deletions ch05/Conditional.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import java.util.Scanner;

/**
* Examples from Chapter 5.
*/
Expand Down
2 changes: 1 addition & 1 deletion ch05/Exercise.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static void main(String[] args) {

public static void clink(int fork) {
System.out.print("It's ");
zoop("breakfast ", fork) ;
zoop("breakfast ", fork);
}

public static void ping(String strangStrung) {
Expand Down

0 comments on commit bc92797

Please sign in to comment.