summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,