fixing bug with unitiated list

merge-requests/162/head
Ace 5 years ago
parent 192984e3c0
commit 42b9753944

@ -295,7 +295,7 @@ public abstract class AbstractDeviceDAOImpl implements DeviceDAO {
Connection conn = null; Connection conn = null;
PreparedStatement stmt = null; PreparedStatement stmt = null;
ResultSet resultSet = null; ResultSet resultSet = null;
List<Device> devices = null; List<Device> devices = new ArrayList<>();
try { try {
List<List<String>> outputLists = new ArrayList<>(); List<List<String>> outputLists = new ArrayList<>();
List<String> deviceList = null; List<String> deviceList = null;

Loading…
Cancel
Save