diff --git a/include/dollop.h b/include/dollop.h
index fd0c233edaa3027457dfaf9aa008c51f150e59d4..352bdec1b1eaba9b714c0ec566dbd41831c30c62 100644
--- a/include/dollop.h
+++ b/include/dollop.h
@@ -46,10 +46,6 @@ class Placeable_t {
 				m_is_placed = true;
 				m_placed_address = place;
 		};
-		void RePlace(Zipr_SDK::RangeAddress_t place) {
-				m_is_placed = true;
-				m_placed_address = place;
-		};
 		Zipr_SDK::RangeAddress_t Place() { return m_placed_address; }
 		bool IsPlaced() const { return m_is_placed; }
 		friend std::ostream &operator<<(std::ostream &, const Placeable_t &);