mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix application getting issue
This commit is contained in:
parent
e2acb5c4c8
commit
911bc6f9a0
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user