Skip to content
Snippets Groups Projects
Commit 460d8df9 authored by Felix Sidokhine's avatar Felix Sidokhine
Browse files

fixed some stuff in the DAO

parent 99fced43
No related branches found
No related tags found
No related merge requests found
......@@ -78,11 +78,6 @@ public class DeviceDao extends AbstractDao<Device> {
}
}
@Override
public boolean deleteObject(LinkedHashMap<String, String> constraints) {
return false;
}
@Override
public boolean updateObject(StatementList update, StatementList constraints) {
return false;
......
......@@ -76,11 +76,6 @@ public class SystemDao extends AbstractDao<SystemAccount> {
}
}
@Override
public boolean deleteObject(LinkedHashMap<String, String> constraints) {
return false;
}
@Override
public boolean updateObject(StatementList update, StatementList constraints) {
return false;
......
......@@ -83,10 +83,4 @@ public class UserDao extends AbstractDao<User> {
DataStore.connectionPool.returnConnection(connection);
}
}
@Override
public boolean deleteObject(LinkedHashMap<String, String> constraints) {
return false;
}
}
......@@ -60,9 +60,4 @@ public class UserProfileDao extends AbstractDao<UserProfile> {
public boolean storeObject(UserProfile object) {
return false;
}
@Override
public boolean deleteObject(LinkedHashMap<String, String> constraints) {
return false;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment