Skip to content

Commit

Permalink
Fixed indentation (and for consistency)
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Oct 8, 2019
1 parent 4d0a6dd commit 2be1bd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/simplejavacalculator/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import static java.lang.Math.pow;

public class Calculator {

public enum BiOperatorModes {
normal, add, minus, multiply, divide , xpowerofy
}
Expand Down Expand Up @@ -106,8 +107,6 @@ public Double calculateMono(MonoOperatorModes newMode, Double num) {
return Math.abs(num);
}



// never reach
throw new Error();
}
Expand Down
1 change: 1 addition & 0 deletions src/simplejavacalculator/UI.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* @modemail [email protected]
* @modemail [email protected]
*/

package simplejavacalculator;

import java.awt.FlowLayout;
Expand Down

0 comments on commit 2be1bd9

Please sign in to comment.