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

[3.3.0] Fixed typo in equals method of widget bundle class
This commit is contained in:
Igor Kulikov 2021-07-21 18:59:25 +03:00 committed by GitHub
commit 8fadbe53fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}