Remove Dump() method since we have Write().
diff --git a/properties.go b/properties.go
index 756b886..cde5948 100644
--- a/properties.go
+++ b/properties.go
@@ -132,15 +132,6 @@
 	return v, ok, nil
 }
 
-// Dump returns a string of all unexpanded 'key = value' pairs.
-func (p *Properties) Dump() string {
-	var s string
-	for key, value := range p.m {
-		s = fmt.Sprintf("%s%s = %s\n", s, key, value)
-	}
-	return s
-}
-
 // String returns a string of all expanded 'key = value' pairs.
 func (p *Properties) String() string {
 	var s string