mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Removed unnecessary new lines in DeviceDAOImpl
This commit is contained in:
parent
460fda1bb9
commit
abc16557dc
@ -42,9 +42,8 @@ public class DeviceDAOImpl implements DeviceDAO {
|
|||||||
int deviceId = -1;
|
int deviceId = -1;
|
||||||
try {
|
try {
|
||||||
conn = this.getConnection();
|
conn = this.getConnection();
|
||||||
String sql =
|
String sql = "INSERT INTO DM_DEVICE(DESCRIPTION, NAME, DEVICE_TYPE_ID, DEVICE_IDENTIFICATION, TENANT_ID) " +
|
||||||
"INSERT INTO DM_DEVICE(DESCRIPTION, NAME, DEVICE_TYPE_ID, DEVICE_IDENTIFICATION, TENANT_ID) " +
|
"VALUES (?, ?, ?, ?, ?)";
|
||||||
"VALUES (?, ?, ?, ?, ?)";
|
|
||||||
stmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
|
stmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
|
||||||
stmt.setString(1, device.getDescription());
|
stmt.setString(1, device.getDescription());
|
||||||
stmt.setString(2, device.getName());
|
stmt.setString(2, device.getName());
|
||||||
@ -74,9 +73,8 @@ public class DeviceDAOImpl implements DeviceDAO {
|
|||||||
int deviceId = -1;
|
int deviceId = -1;
|
||||||
try {
|
try {
|
||||||
conn = this.getConnection();
|
conn = this.getConnection();
|
||||||
String sql =
|
String sql = "UPDATE DM_DEVICE SET DESCRIPTION = ?, NAME = ? WHERE DEVICE_IDENTIFICATION = ? AND " +
|
||||||
"UPDATE DM_DEVICE SET DESCRIPTION = ?, NAME = ? WHERE DEVICE_IDENTIFICATION = ? AND " +
|
"DEVICE_TYPE_ID = ? AND TENANT_ID = ?";
|
||||||
"DEVICE_TYPE_ID = ? AND TENANT_ID = ?";
|
|
||||||
stmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
|
stmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
|
||||||
stmt.setString(1, device.getDescription());
|
stmt.setString(1, device.getDescription());
|
||||||
stmt.setString(2, device.getName());
|
stmt.setString(2, device.getName());
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user