Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: impl/memory/plist.go

Issue 1247283003: Improve docs (Closed) Base URL: https://github.com/luci/gae.git@reduce_size
Patch Set: fix comments Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « impl/dummy/doc.go ('k') | impl/memory/raw_datastore_data.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/memory/plist.go
diff --git a/impl/memory/plist.go b/impl/memory/plist.go
index 22a942b313f035fe6e56579c360a0e89936f2d0d..62e1d7c15bb966cd2f197370b2e42ca6c229aa4f 100644
--- a/impl/memory/plist.go
+++ b/impl/memory/plist.go
@@ -73,7 +73,7 @@ func partiallySerialize(pm rds.PropertyMap) (ret serializedIndexablePmap) {
continue
}
buf.Reset()
- rds.WriteProperty(buf, v, rds.WithoutContext)
+ v.Write(buf, rds.WithoutContext)
newVal := make([]byte, buf.Len())
copy(newVal, buf.Bytes())
newVals = append(newVals, newVal)
« no previous file with comments | « impl/dummy/doc.go ('k') | impl/memory/raw_datastore_data.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698