Kaydet (Commit) 8d5f4717 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

loplugin:unusedmethods configmgr

Change-Id: Ie0338860717630633752a39814057c736d1faee8
Reviewed-on: https://gerrit.libreoffice.org/17059Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 04b472af
...@@ -71,10 +71,6 @@ Node::Kind GroupNode::kind() const { ...@@ -71,10 +71,6 @@ Node::Kind GroupNode::kind() const {
return KIND_GROUP; return KIND_GROUP;
} }
void GroupNode::clear() {
members_.clear();
}
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -53,8 +53,6 @@ private: ...@@ -53,8 +53,6 @@ private:
virtual Kind kind() const SAL_OVERRIDE; virtual Kind kind() const SAL_OVERRIDE;
virtual void clear() SAL_OVERRIDE;
bool extensible_; bool extensible_;
NodeMap members_; NodeMap members_;
OUString templateName_; OUString templateName_;
......
...@@ -59,10 +59,6 @@ Node::Kind LocalizedPropertyNode::kind() const { ...@@ -59,10 +59,6 @@ Node::Kind LocalizedPropertyNode::kind() const {
return KIND_LOCALIZED_PROPERTY; return KIND_LOCALIZED_PROPERTY;
} }
void LocalizedPropertyNode::clear() {
members_.clear();
}
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -50,8 +50,6 @@ private: ...@@ -50,8 +50,6 @@ private:
virtual Kind kind() const SAL_OVERRIDE; virtual Kind kind() const SAL_OVERRIDE;
virtual void clear() SAL_OVERRIDE;
Type staticType_; Type staticType_;
// as specified in the component-schema (TYPE_ANY, ..., // as specified in the component-schema (TYPE_ANY, ...,
// TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL) // TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL)
......
...@@ -77,8 +77,6 @@ Node::Node(const Node & other): ...@@ -77,8 +77,6 @@ Node::Node(const Node & other):
Node::~Node() {} Node::~Node() {}
void Node::clear() {}
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -58,7 +58,6 @@ protected: ...@@ -58,7 +58,6 @@ protected:
Node(const Node & other); Node(const Node & other);
virtual ~Node(); virtual ~Node();
virtual void clear();
int layer_; int layer_;
int finalized_; int finalized_;
......
...@@ -107,10 +107,6 @@ Node::Kind SetNode::kind() const { ...@@ -107,10 +107,6 @@ Node::Kind SetNode::kind() const {
return KIND_SET; return KIND_SET;
} }
void SetNode::clear() {
members_.clear();
}
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -61,8 +61,6 @@ private: ...@@ -61,8 +61,6 @@ private:
virtual Kind kind() const SAL_OVERRIDE; virtual Kind kind() const SAL_OVERRIDE;
virtual void clear() SAL_OVERRIDE;
OUString defaultTemplateName_; OUString defaultTemplateName_;
std::vector< OUString > additionalTemplateNames_; std::vector< OUString > additionalTemplateNames_;
NodeMap members_; NodeMap members_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment