| Index: samples/swarm/swarm_ui_lib/base/Size.dart
|
| diff --git a/samples/swarm/swarm_ui_lib/base/Size.dart b/samples/swarm/swarm_ui_lib/base/Size.dart
|
| index 335f7e3e5b60666702b5fa4a1e8ddf78b0d625fc..d14c20ed9ff73093f54747dbbe602bbf5904d987 100644
|
| --- a/samples/swarm/swarm_ui_lib/base/Size.dart
|
| +++ b/samples/swarm/swarm_ui_lib/base/Size.dart
|
| @@ -13,7 +13,7 @@ class Size {
|
| }
|
|
|
| bool operator ==(Size other) {
|
| - return other !== null && width == other.width && height == other.height;
|
| + return other != null && width == other.width && height == other.height;
|
| }
|
|
|
| /**
|
|
|