Index: Source/core/inspector/ScriptArguments.cpp |
diff --git a/Source/core/inspector/ScriptArguments.cpp b/Source/core/inspector/ScriptArguments.cpp |
index 6c5ac58f57e411cb76f26df042c418a881d91d1e..703dd8a6bfb412cbd10b2623da7c9bf6209213ae 100644 |
--- a/Source/core/inspector/ScriptArguments.cpp |
+++ b/Source/core/inspector/ScriptArguments.cpp |
@@ -81,21 +81,4 @@ bool ScriptArguments::getFirstArgumentAsString(String& result, bool checkForNull |
return true; |
} |
-bool ScriptArguments::isEqual(ScriptArguments* other) const |
-{ |
- if (!other) |
- return false; |
- |
- if (m_arguments.size() != other->m_arguments.size()) |
- return false; |
- if (!globalState() && m_arguments.size()) |
- return false; |
- |
- for (size_t i = 0; i < m_arguments.size(); ++i) { |
- if (!m_arguments[i].isEqual(other->globalState(), other->m_arguments[i])) |
- return false; |
- } |
- return true; |
-} |
- |
} // namespace WebCore |