mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed spelling mistakes of policy component
This commit is contained in:
parent
b33925c497
commit
9920f2919a
@ -45,7 +45,7 @@ public class ComplianceFeature {
|
||||
this.featureCode = featureCode;
|
||||
}
|
||||
|
||||
public boolean isCompliance() {
|
||||
public boolean isCompliant() {
|
||||
return compliance;
|
||||
}
|
||||
|
||||
|
||||
@ -219,7 +219,7 @@ public class MonitoringDAOImpl implements MonitoringDAO {
|
||||
for (ComplianceFeature feature : complianceFeatures) {
|
||||
stmt.setInt(1, policyComplianceStatusId);
|
||||
stmt.setString(2, feature.getFeatureCode());
|
||||
if (feature.isCompliance()) {
|
||||
if (feature.isCompliant()) {
|
||||
stmt.setInt(3, 1);
|
||||
} else {
|
||||
stmt.setInt(3, 0);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user