Skip to content

Commit f4c9901

Browse files
committed
corrected else statement
1 parent b1a9a56 commit f4c9901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/esri/samples/scene/scene_layer_select/SceneLayerSelectSample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ public void start(Stage stage) throws Exception {
111111
new Alert(Alert.AlertType.ERROR, "Error identifying features").show();
112112
}
113113
});
114-
} else {
115-
new Alert(Alert.AlertType.ERROR, "Error loading scene layer").show();
116114
}
117115
});
116+
} else {
117+
new Alert(Alert.AlertType.ERROR, "Error loading scene layer").show();
118118
}
119119
});
120120

0 commit comments

Comments
 (0)