Skip to content
Snippets Groups Projects
Commit 8d464560 authored by Vojtěch Moravec's avatar Vojtěch Moravec
Browse files

Add missing semicolons. (facepalm)

parent 333b19c0
Branches
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ public class EntropyCalculation extends CustomFunctionBase {
public boolean run() {
IPlaneLoader loader;
try {
loader = PlaneLoaderFactory.getPlaneLoaderForInputFile(options.getInputDataInfo())
loader = PlaneLoaderFactory.getPlaneLoaderForInputFile(options.getInputDataInfo());
} catch (Exception ex) {
System.err.println("EntropyCalculation::run() - Unable to get plane loader. " + ex.getMessage());
return false;
......@@ -31,7 +31,7 @@ public class EntropyCalculation extends CustomFunctionBase {
for (int planeIndex = 0; planeIndex < options.getInputDataInfo().getDimensions().getZ(); planeIndex++) {
final int[] planeData;
try {
planeData = loader.loadPlaneData(planeIndex)
planeData = loader.loadPlaneData(planeIndex);
} catch (IOException e) {
System.err.printf("Failed to load plane %d data. %s", planeIndex, e.getMessage());
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment