Fix application getting issue

This commit is contained in:
lasanthaDLPDS 2019-03-04 10:25:13 +05:30
parent e2acb5c4c8
commit 911bc6f9a0

View File

@ -60,8 +60,9 @@ public class Util {
List<Application> applications = new ArrayList<>();
Application application = null;
int applicationId = -1;
boolean hasNext = rs.next();
while (rs.next()) {
while (hasNext) {
if (applicationId != rs.getInt("APP_ID")) {
if (application != null) {
applications.add(application);
@ -97,7 +98,8 @@ public class Util {
}
}
}
if (rs.last()) {
hasNext = rs.next();
if (!hasNext) {
applications.add(application);
}
}