Browse Source

Merge pull request #4935 from volodymyr-babak/fixed-typo-widget-bundle

[3.3.0] Fixed typo in equals method of widget bundle class
pull/4946/head
Igor Kulikov 5 years ago
committed by GitHub
parent
commit
8fadbe53fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      common/data/src/main/java/org/thingsboard/server/common/data/widget/WidgetsBundle.java

2
common/data/src/main/java/org/thingsboard/server/common/data/widget/WidgetsBundle.java

@ -117,7 +117,7 @@ public class WidgetsBundle extends SearchTextBased<WidgetsBundleId> implements H
if (alias != null ? !alias.equals(that.alias) : that.alias != null) return false;
if (title != null ? !title.equals(that.title) : that.title != null) return false;
if (image != null ? !image.equals(that.image) : that.image != null) return false;
if (description != null ? !description.equals(that.image) : that.description != null) return false;
if (description != null ? !description.equals(that.description) : that.description != null) return false;
return true;
}

Loading…
Cancel
Save