> @@ -74,7 +74,7 @@ public D getRData() {
>     public boolean equals(Object obj) {
>        if (this == obj)
>           return true;
> -      if (obj == null || !obj.getClass().equals(CreateRecord.class))
> +      if (obj == null || !(obj instanceof CreateRecord))

It's not the same, but I believe we want `instanceof`.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/498/files#r16815700

Reply via email to