проверка identity

This commit is contained in:
DBotThePony 2023-02-22 10:02:08 +07:00
parent 9da968695e
commit 3f4c34f5e3
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -34,7 +34,7 @@ class SBPattern private constructor(
}
override fun equals(other: Any?): Boolean {
return other is SBPattern && other.raw == raw && other.names == names && other.pieces == pieces && other.params == params
return other === this || other is SBPattern && other.raw == raw && other.names == names && other.pieces == pieces && other.params == params
}
@Volatile