Skip to content

Commit

Permalink
Missing else if condition in profiler Spark utils
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Dec 10, 2018
1 parent dcff6c4 commit df32efe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/profiler/utils/SparkUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public class SparkUtils {
public static String appName(final String s) {
if (s.equals("fft")) {
return "SparkFFT";
} else if (s.equals("lagrange")) {
return "Lagrange";
} else if (s.equals("fmsm-g1")) {
return "SparkFixedMSMG1";
} else if (s.equals("fmsm-g2")) {
Expand Down

0 comments on commit df32efe

Please sign in to comment.