> @@ -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))This is not quite the same, though, is it? Although I assume the instanceof check is actually what we want... --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/498/files#r16813490
