summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSPropertySourceData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/CSSPropertySourceData.cpp')
-rw-r--r--WebCore/css/CSSPropertySourceData.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/WebCore/css/CSSPropertySourceData.cpp b/WebCore/css/CSSPropertySourceData.cpp
index 1628031..eb9c2c1 100644
--- a/WebCore/css/CSSPropertySourceData.cpp
+++ b/WebCore/css/CSSPropertySourceData.cpp
@@ -54,13 +54,6 @@ SourceRange::SourceRange(unsigned start, unsigned end)
{
}
-SourceRange& SourceRange::operator=(const SourceRange& other)
-{
- this->start = other.start;
- this->end = other.end;
- return *this;
-}
-
CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range)
: name(name)
, value(value)
@@ -88,16 +81,6 @@ CSSPropertySourceData::CSSPropertySourceData()
{
}
-CSSPropertySourceData& CSSPropertySourceData::operator=(const CSSPropertySourceData& other)
-{
- name = other.name;
- value = other.value;
- important = other.important;
- parsedOk = other.parsedOk;
- range = other.range;
- return *this;
-}
-
String CSSPropertySourceData::toString() const
{
DEFINE_STATIC_LOCAL(String, emptyValue, ("e"));