Index: runtime/vm/object.h |
diff --git a/runtime/vm/object.h b/runtime/vm/object.h |
index 3c2b7c20a13e2194fcb94969c143bc3a61492201..d069a1e8626ec369ed615bc07a4451fb0dec4f78 100644 |
--- a/runtime/vm/object.h |
+++ b/runtime/vm/object.h |
@@ -262,15 +262,12 @@ class Object { |
&raw()->ptr()->tags_, old_tags, new_tags); |
} |
bool IsCanonical() const { |
- ASSERT(!IsNull()); |
return raw()->IsCanonical(); |
} |
void SetCanonical() const { |
- ASSERT(!IsNull()); |
raw()->SetCanonical(); |
} |
void ClearCanonical() const { |
- ASSERT(!IsNull()); |
raw()->ClearCanonical(); |
} |
intptr_t GetClassId() const { |