fixing bug with unitiated list

revert-70aa11f8
Ace 5 years ago
parent 192984e3c0
commit 42b9753944

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

Loading…
Cancel
Save