summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-28 00:32:18 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-28 00:32:18 +0000
commitfbb6e0e4d5731a2de6820bcb6ee57252ddd772fa (patch)
treee307672e8cec6192b32cfbc39f3e1ee7593456e3 /src
parent40cb868154c1e74608582d2ad1da37ef81f407c0 (diff)
Remove unused method.
Diffstat (limited to 'src')
-rw-r--r--src/asset.cc9
-rw-r--r--src/asset.h1
2 files changed, 0 insertions, 10 deletions
diff --git a/src/asset.cc b/src/asset.cc
index 96196b41..2ca58a62 100644
--- a/src/asset.cc
+++ b/src/asset.cc
@@ -48,15 +48,6 @@ Asset::Asset (boost::filesystem::path file)
}
-/** Create an Asset with a specified ID.
- * @param id ID to use.
- */
-Asset::Asset (string id)
- : Object (id)
-{
-
-}
-
void
Asset::write_to_pkl (xmlpp::Node* node, Standard standard) const
{
diff --git a/src/asset.h b/src/asset.h
index 86d5daf5..ea0efe49 100644
--- a/src/asset.h
+++ b/src/asset.h
@@ -47,7 +47,6 @@ class Asset : public Object
public:
Asset ();
Asset (boost::filesystem::path file);
- Asset (std::string id);
virtual bool equals (
boost::shared_ptr<const Asset> other,