Skip to content

Commit

Permalink
94: Translate Hurricane Demo
Browse files Browse the repository at this point in the history
Task-Url: #94
  • Loading branch information
keilw committed Jul 25, 2020
1 parent 53070f2 commit e831a9a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
* @see {@link SaffirSimpsonHurricaneWindScale}
*/
public class ThePerfectStorm {
// Constants
private static final SaffirSimpsonHurricaneWindScale STD = SaffirSimpsonHurricaneWindScale.of(
null, Quantities.getQuantity(38, MILE_PER_HOUR), TROPICAL_DEPRESSION);
private static final SaffirSimpsonHurricaneWindScale STS = SaffirSimpsonHurricaneWindScale.of(
Expand Down Expand Up @@ -85,7 +86,7 @@ public static void main(String[] args) {
System.out.println(s5);

int argument = -1;
if (args != null && args.length>0) {
if (args != null && args.length > 0) {
argument = Integer.valueOf(args[0]).intValue();
}

Expand Down

0 comments on commit e831a9a

Please sign in to comment.