Skip to content

Commit

Permalink
Suppress compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Jan 5, 2015
1 parent 510e257 commit 260ebaf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/gdsc/foci/SpotSeparation.java
Expand Up @@ -177,6 +177,7 @@ public void run(ImageProcessor ip)
break;
}

@SuppressWarnings("unchecked")
float[][] profileValues = convertToFloat(before, after);
xValues = profileValues[0];
yValues = profileValues[1];
Expand Down Expand Up @@ -250,6 +251,7 @@ public void run(ImageProcessor ip)
break;
}

@SuppressWarnings("unchecked")
float[][] profileValues = convertToFloat(before, values, after);
xValues = profileValues[0];
yValues = profileValues[1];
Expand Down

0 comments on commit 260ebaf

Please sign in to comment.