Skip to content

Commit

Permalink
Merge pull request #30 from xdvrx1/master
Browse files Browse the repository at this point in the history
Project Proposed Changes
  • Loading branch information
pH-7 authored Feb 14, 2020
2 parents 5d5fb6d + de7ffed commit 7d453f1
Show file tree
Hide file tree
Showing 5 changed files with 301 additions and 213 deletions.
Binary file removed SimpleJavaCalculator.jar
Binary file not shown.
1 change: 1 addition & 0 deletions icon/icon-notice.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`icon.png`, all rights reserved by xdvrx1
Binary file added icon/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/simplejavacalculator/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public Double calculateMono(MonoOperatorModes newMode, Double num) {
if (num == 0 || num % 180 == 0) {
return 0.0;
}
if (num % 90 == 0 && num % 180 != 0)
if (num % 90 == 0 && num % 180 != 0) {
return NaN;
}

Expand Down
Loading

0 comments on commit 7d453f1

Please sign in to comment.