From fae2182e086448b1ee6833679f50085110e62841 Mon Sep 17 00:00:00 2001 From: Adrian Stoica <george.a.stoica@ntnu.no> Date: Mon, 21 Oct 2019 11:44:23 +0200 Subject: [PATCH] Changed method for populating the list with initial data to protected. related to the MR !6 --- simpleexample2/fxui/src/main/java/simpleex/ui/FxApp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpleexample2/fxui/src/main/java/simpleex/ui/FxApp.java b/simpleexample2/fxui/src/main/java/simpleex/ui/FxApp.java index 5778cfb..aece3fe 100644 --- a/simpleexample2/fxui/src/main/java/simpleex/ui/FxApp.java +++ b/simpleexample2/fxui/src/main/java/simpleex/ui/FxApp.java @@ -74,7 +74,7 @@ public class FxApp extends Application { * Method to prepare the initial entries in the loaction list * @return LatLongs instance with several items */ - private LatLongs getInitialData() { + protected LatLongs getInitialData() { LatLongs latLongs = new LatLongs(); latLongs.addLatLong(new LatLong(63.1, 11.2)); latLongs.addLatLong(new LatLong(63.2, 11.0)); -- GitLab